-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 838 Bytes
/
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="data.js"></script>
<script src="generate-html.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body onload="init();">
<h1>Esolang Videos</h1>
<div id="options">
<label class="switch">
<div class="switchContainer">
<input type="checkbox" onclick="populateHTML();" checked id=toggleSort>
<span class="slider round"></span>
</div>
</label>
</div>
<div id="list">
<h3>Brachylog</h3>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=XYVhZ-MFcUs">A Short Introduction to Brachylog</a>
by
<a href="https://www.youtube.com/channel/UCOCbeCJAGd558TvbHkLMFpA">Julien C.</a>
</li>
</ul>
</div>
</body>