Posted in sections
4505
11:54 pm, October 24, 2022
 

subscribe to newsletter section example

HTML

<!--
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.3/css/foundation.min.css" />-->

<style>
.subscribe-newsletter {
  padding:130px;
  background:linear-gradient(357.05deg, rgba(0, 0, 0, 0.62) 2.39%, rgba(0, 0, 0, 0) 97.49%), url("https://picsum.photos/1200/600") center no-repeat;
  background-size:cover;
}
.subscribe-title {
  margin-bottom:20px;
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 116.5%;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow:0px 1px 2px #000;
}
.subscribe-text {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 132%;
  color: #FFFFFF;
  text-shadow:0px 1px 2px #000;
  margin-bottom:20px;
}
.subscribe-button a:hover {
    color:#FFF;
    background:teal;
}
.subscribe-button a {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: teal;
  padding:12px 65px;
  display:inline-block;
  background: #FFFFFF;
  border-radius: 5px;
}
</style>


<section class="subscribe-newsletter">
	<div class="grid-container">
		<div class="grid-x">
			<div class="large-8 cell">
				<div class="subscribe-title">
					Subscribe To Our Newsletter
				</div>
				<div class="subscribe-text">
					Stay in touch with us to get the latest news.
				</div>
			</div>
			<div class="large-4 cell">
				<div class="subscribe-button">
					<a href="#!">Subscribe</a>
				</div>
			</div>
		</div>
	</div>
</section>

External Link for subscribe to newsletter section example

View Statistics
This Week
48
This Month
178
This Year
851

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
The happiest People don't have the best of everything, they just make the best of everything.
Unknown
Random CSS Property

url()

The url() CSS function is used to include a file. The parameter is an absolute URL, a relative URL, a blob URL, or a data URL. The url() function can be passed as a parameter of another CSS functions, like the attr() function. Depending on the property for which it is a value, the resource sought can be an image, font, or a stylesheet. The url() functional notation is the value for the <url> data type.
<url> css reference