-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (44 loc) · 1.29 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
<!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">
<nav id="nav-bar">
<a class="nav-link" href="#home">Home</a>
<a class="nav-link" href="#jobs">Jobs</a>
<a class="nav-link" href="#about">About us</a>
</nav>
<img
id="header-img"
src="https://www.codeyourbusiness.com/img/logo.jpg"
width="100px"
height="100px"
alt="CompanyLogo"
/>
</header>
<iframe
id="video"
src="https://www.youtube-nocookie.com/embed/y8Yv4pnO7qc?rel=0&controls=0&showinfo=0"
frameborder="0"
></iframe>
<form id="form" action="">
<input
type="email"
id="email"
name="email"
placeholder="Enter your email"
/>
<input type="submit" id="submit" />
</form>
<section id="home"></section>
<section id="jobs"></section>
<section id="about"></section>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<script src="js/index.js"></script>
</body>
</html>