-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (26 loc) · 858 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
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="scripts/style.css">
<script src="scripts/tags.js"></script>
<script src="scripts/utilities.js"></script>
<script src="scripts/convert.js"></script>
<title></title>
</head>
<body class="flexcolumn">
<div class="flexcolumn">
<h1 id="title"></h1>
<h3 id="creator"></h3>
</div>
<div class="flexrow">
<div id="home"><button onclick="go_home()"><h3>HOME</h3></button></div>
<div class="flexrow" id="search"><h3>Search:</h3><input onkeydown="search(event, this)"></div>
<div class="flexrow" id="list"><h3>Recent pages:</h3></div>
</div>
<div class="flexrow">
<h1 id="loading">Loading...</h1>
<div class="flexrow" id="current_article"></div>
</div>
</body>
</html>