-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlandingpage.html
More file actions
81 lines (72 loc) · 2.02 KB
/
Copy pathlandingpage.html
File metadata and controls
81 lines (72 loc) · 2.02 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bark Box</title>
<link rel="stylesheet" href="landingpage.css">
<link href="print.css" rel="stylesheet" media="print">
</head>
<body>
<div class="container">
<header>
<img src="images/doglogo.png" height=120px>
</header>
<nav>
<ul>
<li><a href="#secondblock">How it Works</a></li>
<li><a href="#thirdblock">What's Inside</a></li>
<li><a href="#content">Sign Up</a></li>
</ul>
</nav>
<div id="firstblock">
<h1>Treat your dog!</h1>
<img src="images/dogtilt.png">
</div>
<div id="secondblock">
<div>
<h1>How Bite Box Works</h1>
</div>
<div class="clearfix">
<div class="wordcontainer">
<img src="images/box.png" height="120px">
<h3>Subscribe, starting at <br/>30$ per box</h3>
</div>
<div class="wordcontainer">
<img src="images/mail.png" height="120px">
<h3>Your first box ships <br/>in the first 24 hours</h3>
</div>
<div class="wordcontainer">
<img src="images/dogtoyplaying.png" height="120px">
<h3>Let playtime begin!</h3>
</div>
</div>
</div>
<div id="thirdblock">
<div>
<h1>What's Inside</h1>
<p>Inside this box is a unique collection <br/> of durable toys that any dog would <br/>love. Get yours today!</p>
</div>
<!--
<div id="fourthblock">
<div>
<h1>Sign Up for Exclusive Deals!</h1>
<p>hi</p>
</div>
</div>
-->
</div>
<div id="content">
<div class="column main">
<h1>Sign Up for Exclusive Deals!</h1>
<form>
<label>Email:</label>
<input name="email" type="email">
</form>
</div>
</div>
<footer>
<p>© 2019 Bark Box</p>
</footer>
</div>
</body>
</html>