-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Awesome Landing Page</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<div id="main">
<div id="header">
<nav id="nav-bar">
<a href="#about" class="nav-link">About</a>
<a href="#products" class="nav-link">Prices</a>
<a href="#contact" class="nav-link">Contact</a>
</nav>
<img src="img/logo.png" alt="The logo for XMPL" id="header-img">
</div>
<section id="about">
<iframe id="video" width="720" height="360"
src="https://www.youtube-nocookie.com/embed/2YBtspm8j8M?rel=0&controls=0&showinfo=0"
frameborder="0" allowfullscreen>
</iframe>
</section>
<section id="products">
<div class="product">
<div class="product-header">Product A</div>
<ul>
<li>lorem</li>
<li>ipsun</li>
<li>dolor sit</li>
</ul>
</div>
<div class="product">
<div class="product-header">Product B</div>
<ul>
<li>lorem</li>
<li>ipsun</li>
<li>dolor sit</li>
</ul>
</div>
<div class="product">
<div class="product-header">Product C</div>
<ul>
<li>lorem</li>
<li>ipsun</li>
<li>dolor sit</li>
</ul>
</div>
</section>
<section id="contact">
<h2>Get notified from our latest news!</h2>
<form action="https://www.freecodecamp.com/email-submit" id="form">
<input id="email" type="email" name="email" placeholder="Enter your email address">
<input id="submit" type="submit" value="Subscribe">
</form>
</section>
</div>
</body>
</html>