-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 872 Bytes
/
index.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
<html>
<head>
<title>Dor - Exercise number 3</title>
<link rel="stylesheet" type="text/css" href="styles/style.css" />
</head>
<body>
<div id="container">
<div id="inner">
<a href="#">
<img src="images/close.png" id="close" />
</a>
<h3>Subscribe to our newsletter</h3>
<p>Enter your email address to receive all news<br/>from our awesome website.</p>
<div id="add">
<input type="text" placeholder="Your email address...." id="email"></input>
<div id="subscribe">
<p>Subscribe</p>
</div>
</div>
<p id="comment">*Don't worry you'll not be spammed</p>
</div>
</div><!-- End of container -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="scripts/script.js"></script>
</body>
</html>