-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
97 lines (76 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/jpg" href="favicon.ico">
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<script src="js/Chart.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<link rel="stylesheet" href="style.css" />
<title>CurrEx</title>
</head>
<body>
<!-- SIDEBAR -->
<section id="sidebar">
<a href="#" class="brand">
<i class="bx bxs-dollar-circle"></i>
<span class="text">CurrEx</span>
</a>
<ul class="side-menu top">
<li class="active">
<a href="#">
<i class="bx bx-home-alt"></i>
<span class="text">Home</span>
</a>
</li>
<li>
<a href="index2.html">
<i class="bx bx-line-chart"></i>
<span class="text">Analytics</span>
</a>
</li>
<li class="#">
<a href="index3.html">
<i class="bx bx-money"></i>
<span class="text">Convert</span>
</a>
</li>
</ul>
</section>
<!-- SIDEBAR -->
<!-- CONTENT -->
<section id="content">
<nav>
<i class="bx bx-menu"></i>
</nav>
<!-- MAIN -->
<main>
<!--------------------------------------------------------------------->
<ul class="box-info">
<li>
<i class="bx bxs-calendar-check"></i>
<span class="text">
<h3>26 August 2022</h3>
</span>
</li>
</ul>
<!--------------------------------------------------------------------->
<div class="table-data">
<div class="todo">
<div id="table_div"></div>
</div>
</div>
<!--------------------------------------------------------------------->
</main>
<!-- MAIN -->
</section>
<!-- CONTENT -->
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="data.js"></script>
<script src="script.js"></script>
<script src="main.js"></script>
</body>
</html>