Posted in sections
4504
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
47
This Month
177
This Year
850

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
When I realized that, no individual step is hard in any process. Building this airport I'm standing in right now started with a guy writing the architectural plans on paper. That's not hard for him to do. Then laying the first beam isn't had. The whole thing is really hard. So, just take each step kind of piece by piece and when I was able to do that and stop trying to chase this prize and started putting in the work, things just started coming together.
Unknown
Random CSS Property

box-shadow

The box-shadow CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
box-shadow css reference