-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.19 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quarterly Theory | AMDX Dashboard</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<div class="brand">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
<line x1="12" y1="3" x2="12" y2="21"></line>
<line x1="3" y1="12" x2="21" y2="12"></line>
</svg>
<span>QUARTERLY THEORY</span>
</div>
<div class="clock-display" id="global-clock">00:00:00 UTC</div>
</header>
<main id="dashboard-grid"></main>
<footer>
<p>
Based on concepts by Jevaunie Daye (Trader Daye) |
<a
href="https://github.com/NeaByteLab/Quarterly-Theory"
target="_blank"
style="color: inherit; text-decoration: underline"
>GitHub</a
>
</p>
</footer>
<script src="./script.js"></script>
</body>
</html>