-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (32 loc) · 976 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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DocWriter</title>
<link href="default.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1><a href="https://razerz.github.io/" target="_blank">DocWriter</a></h1>
<div id="navBar">
<button>Overview</button>
<button>Goal</button>
<button>Settings</button>
</div>
<div id="content">
<div class="overview">
<div class="activeDocs">
<div class="listElement">
<p class="title">Title</p>
<div class="activeContent">
<span class="deadline">DEAD-LI-NE</span>
<div class="progress">
<div class="progressbar"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="scripts/initial.js"></script>
</body>
</html>