-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (37 loc) · 1.12 KB
/
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
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>JS Clicker</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="content-wrap">
<div id="content">
<div class="topBar">
<h1 class="directoryTitle" id="directoryTitle">main/</h1>
<span class="lineBreak"></span><br>
<a href="#side-bar" class="open-menu">≡</a>
</div>
<a id="side-bar" href="##">
<div class="side-bar-container">
<p id="semicolonsDisplay">Semicolons:0</p>
<p id="ownedCmdsWrap" style="whitespace:pre;">
<p id="ownedCmds"></p>
</p>
</div>
</a>
<div class="main-content">
<p id="cmdHistory"></p>
<!--format this but keep the id tag-->
<form id="inputForm">
<input style="filter:opacity(40%); font-style:italic; margin:0px!important;" type="text" id="inputReader" placeholder="enter command" />
</form>
</div>
</div>
</div>
<!-- scripts -->
<script src="scripts/script.js"></script>
</body>
</html>