-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site</title>
<link rel="stylesheet" href="styles/styles.css">
<script src="scripts/scripts.js" defer></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Info</a></li>
<li><a href="#">Docs</a></li>
</ul>
</nav>
</header>
<main>
<section id="section-01">
<p>Dummy text for Section 1</p>
</section>
<section id="section-02">
<div class="sidebar">
<!-- Side Nav Bar Goes Here -->
</div>
<div class="content-area">
<!-- Content Goes Here -->
</div>
</section>
<section id="section-03">
<p>Dummy text for Section 3</p>
</section>
</main>
</body>
</html>