forked from microverseinc/fcc-test-suite-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fork Me! FCC: Test Suite Template</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<header id="header">
<img id="header-img" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" />
<nav id="nav-bar">
<a class="nav-link" href="#link01">link 01</a>
<a class="nav-link" href="#link02">link 02</a>
<a class="nav-link" href="#link03">link 03</a>
</nav>
</header>
<section>
<video id="video" src="http://techslides.com/demos/sample-videos/small.mp4"></video>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input type="email" name="email" id="email" placeholder="type your email please" />
<input type="submit" id="submit" />
</form>
</section>
<section id="link01">these are sections</section>
<section id="link02">these are sections</section>
<section id="link03">these are sections</section>
<script src="js/index.js"></script>
</body>
</html>