-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
65 lines (65 loc) · 2.22 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<title>Product Landing Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header id="header">
<img id="header-img" src="http://www.stickpng.com/assets/images/58aeffb2c869e092af51ee74.png" alt="paw print logo" height="50" width="50">
<h1>Kelly's K-9 Training</h1>
<nav id="nav-bar">
<a class="nav-link" href="#about-us">About Us</a>
<a class="nav-link" href="#sample-video">Sample Video</a>
<a class="nav-link" href="#pricing">Pricing</a>
<a class="nav-link" href="#contact-us">Contact Us</a>
</nav>
</header>
<div id="content">
<div id="about-us">
<a id="about-us"></a>
<h2>Who we are</h2>
<div id="about-us-list">
<ul class="about-us-list">
<li>Life-long dog owners</li>
<li>Certified by Dog Trainers of America</li>
<li>Twenty years in the industry</li>
<li>We treat your dog like our own</li>
</ul>
</div>
</div>
<hr>
<div id="sample-video">
<a id="sample-video"></a>
<h2>Watch us in action</h2>
<iframe id="video" width="560" height="315" src="https://www.youtube.com/embed/c-GW0zi7nmk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<hr>
<h2 id="pricing">Pricing</h2>
<div class="container">
<div class="box-1">
<h3>Good</h3>
<p>$199</p>
</div>
<div class="box-2">
<h3>Better</h3>
<p>$299</p>
</div>
<div class="box-3">
<h3>Best</h3>
<p>$399</p>
</div>
</div>
<hr>
<div id="contact-us">
<a id="contact-us"></a>
<h2>Submit your email address to get started</h2>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input id="email" type="email" name="email" required placeholder="Your email address..."><br>
<input id="submit" type="submit" value="Send!">
</form>
</div>
</div>
<script type="text/javascript" src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js""></script>
</body>
</html>