-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.2 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.2 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
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>LearnToCode!</title>
<link rel="stylesheet" href="styles.css">
<link rel='icon' href='./Assets/Avatar.ico' type='image/x-icon'/ >
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<header>
<div id="left">
<p>Learn to Code!</p>
</div>
<div id="right">
<select id="languageSelector" name="language" onchange="changeLanguage()">
</select>
</div>
</header>
<div id="main">
<div id="nav">
<ul id="list">
<li>Select a language to get started</li>
</ul>
</div>
<div id="section">
<h1 id="sectionHeading">Select a language to get started</h1>
<h2>Already know how to code? Why not help <a href="https://github.com/AdamDrummondIOM/LearnToCodeHYP" id="link">Contribute</a>? It's simple and helps others to learn!</h2>
</div>
</div>
<footer>
<div id="left">
© Adam 2021
</div>
<div id="right">
<a href="https://github.com/AdamDrummondIOM/LearnToCodeHYP" id="link">Contribute</a>
</div>
</footer>
</body>
</html>