-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 1.04 KB
/
index.html
File metadata and controls
28 lines (26 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML/CSS/JS Homework</title>
<link rel="stylesheet" href="index.css">
<script defer type="module" src="index.js"></script>
</head>
<body>
<div class="nav" id="nav">
<div class="link"><a class="chapter" id="html" href="javascript:void(0)">HTML Assignment</a></div>
<div class="link"><a class="chapter" id="css" href="javascript:void(0)">CSS Assignment</a></div>
<div class="link"><a class="chapter" id="js1" href="javascript:void(0)">JS Assignment 1</a></div>
<div class="link"><a class="chapter" id="js2" href="javascript:void(0)">JS Assignment 2</a></div>
</div>
<div class="link hide" id="back">
<a id="backButton" href="javascript:void(0)">
Back
</a>
</div>
<div class="hide" id="assignment"></div>
<div class="hide" id="description"></div>
</body>
</html>