-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 946 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 946 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
27
28
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenCode Web Development Fundamentals</title>
<link href="styles.css" rel="stylesheet">
<script src="script.js"></script>
</head>
<body>
<header>
<h1>LaGuardia Community College - OpenCode</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="reference.html">HTML Reference</a></li>
<li><a href="css.html">Styling Reference</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</nav>
</header>
<main>
<h1>Basic Reference Docs</h1>
</main>
<footer>
<p><a href="http://www.laguardia.edu/opencode/" target="_blank">LaGuardia Community College OpenCode Program</a></p>
</footer>
</body>
</html>