-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<title>Fork Me! FCC: Test Suite Template</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header id="header">
<img id="header-img" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png"/>
<nav id="nav-bar">
<ul><li><a class="nav-link" href="#header">Features</a></li>
<li><a class="nav-link" href="#footer">How It Works</a></li>
<li><a class="nav-link" href="#video">Pricing</a></li>
</ul>
</nav>
</header>
<iframe id= "video" src="https://www.youtube.com/watch?v=y8Yv4pnO7qc"></iframe>
<form id="form"action ="https://www.freecodecamp.com/email-submit">
email
<input id="email" type="email" name ="email" placeholder="email"
pattern="/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/" required />
<input type="submit" id="submit" >
</from>
<footer id="footer">
</footer>
</body>
</html>