-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (67 loc) · 2.1 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/table-styles.css">
<link rel="stylesheet" href="styles/form-styles.css">
</head>
<body>
<header>
<h1>Hometask #1 | JavaScript</h1>
</header>
<main>
<h3 id="table-name">Active notes</h3>
<table>
<colgroup>
<col class="category-icon">
<col class="name">
<col class="created">
<col class="category1">
<col class="content">
<col class="dates">
<col class="active-icon">
<col class="active-icon">
<col class="active-icon">
</colgroup>
<thead>
<tr>
<th> </th>
<th>Name</th>
<th>Created</th>
<th>Category</th>
<th>Content</th>
<th>Dates</th>
<th class="header-icon"> </th>
<th class="header-icon archive" id="table-switcher"></th>
<th class="header-icon delete"></th>
</tr>
</thead>
<tbody id="active-archive-table"></tbody>
</table>
<div id="create-note">
<div id="announcer"></div>
<button id="create-note-button">Create Note</button>
</div>
<table>
<colgroup>
<col class="category-icon">
<col class="category2">
<col class="active">
<col class="archived">
</colgroup>
<thead>
<tr>
<th> </th>
<th>Note Category</th>
<th>Active</th>
<th>Archived</th>
</tr>
</thead>
<tbody id="stats-table"></tbody>
</table>
</main>
<script type="module" src="mainThread.js" defer></script>
</body>
</html>