-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
33 lines (31 loc) · 1006 Bytes
/
default.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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<link rel="stylesheet" href="default.css" type="text/css"/>
</head>
<body>
<h2>Stay up to date with ecommerce trends with Shopify's new's letter</h2>
<hr>
<div id="js-bulk">
<h3>Subscribe for free marketing tips</h3>
<div id="js-input-and-select">
<input id="js-input" placeholder="Email Address"/>
<select id="js-select" >
<option disabled selected>Interested in...</option>
<option>Marketing</option>
</select>
</div>
<span id="js-invalid-message">Please enter a valid email address</span>
<div id="js-sign-up">
<button id="js-sign-up-button">Sign up now</button>
</div>
</div>
<div id="js-thank-you-message">
<h3 id="thanks-for-subscribing">Thanks for subscribing</h3>
<h3>You'll start receiving free tips and resources soon.</h3>
</div>
</body>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="default.js"></script>
</html>