-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.08 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.08 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
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>Programming Language Comparison</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="app"></div>
<nav>
<div class="hamburger-menu">
<span></span>
<span></span>
<span></span>
</div>
<ul>
<!-- <li><a href="#" id="javascript">Java Script</a></li>
<li><a href="#" id="dotnet">DotNet</a></li>
<li><a href="#" id="java">Java</a></li>
<li><a href="#" id="python">Python</a></li>
<li><a href="#" id="ruby">Ruby</a></li>
<li><a href="#" id="cpp">C++</a></li> -->
<!-- <li><span class="spacer">·</span></li>
<li><a href="#" id="compare">Compare</a></li> -->
</ul>
</nav>
<div id="content">
<!-- Content will be generated by JavaScript -->
</div>
<footer>Nick M © 2023</footer>
<script src="index.js"></script>
</body>
</html>