-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewslettersignup.html
37 lines (36 loc) · 1.61 KB
/
newslettersignup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Newsletter Sign Up Form</title>
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<section class="subscribe">
<div class="subscribe-pitch">
<h3>Subscribe</h3>
<p>Subscribe to our newsletter to get the latest scoop right to your inbox.<p>
</div>
<form action="index.html" method="post" class="subscribe-form">
<input type="email" name="email" class="subscribe-input" placeholder="Email address" autofocus>
<button type="submit" class="subscribe-submit">Subscribe</button>
</form>
</section>
<section class="about">
<p class="about-links">
<a href="http://www.cssflow.com/snippets/newsletter-sign-up-form" target="_parent">View Article</a>
<a href="http://www.cssflow.com/snippets/newsletter-sign-up-form.zip" target="_parent">Download</a>
</p>
<p class="about-author">
© 2012–2013 <a href="http://thibaut.me" target="_blank">Thibaut Courouble</a> -
<a href="http://www.cssflow.com/mit-license" target="_blank">MIT License</a><br>
Original PSD by <a href="http://365psd.com/day/281/" target="_blank">Farzad Ban</a>
</p>
</section>
</body>
</html>