-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
26 lines (26 loc) · 892 Bytes
/
about.html
File metadata and controls
26 lines (26 loc) · 892 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Day 5</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h1>About us</h1>
<p id="description">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Fuga velit illo iste ut optio nostrum accusamus ex cupiditate accusantium ratione voluptatibus inventore ea, sequi, odio obcaecati sint. Obcaecati, est repellat.
</p>
<nav id="navbar">
<ul id="navbar-list">
<!-- Navbar script inserts nav elements -->
</ul>
</nav>
<div class="newsletter">
<p>Enter your email to recive our newsletter?</p>
<!-- Newletter script inserts form -->
</div>
<script src="./navbar.js"></script>
<script src="./newsletter.js"></script>
</body>
</html>