-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (69 loc) · 2.44 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CryptoDash</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&display=swap" rel="stylesheet" />
<link rel="icon" href="favicon.ico" />
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="script.js" charset="utf-8"></script>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header class="frosted-glass">
<h1>CryptoDash</h1>
<h2>Toutes informations sur les cryptomonnaies simplement résumées</h2>
</header>
<div id="dashboard">
<div id="coins-table" class="frosted-glass">
<table>
<thead>
<tr>
<th colspan="1">Rang</th>
<th colspan="1">Symbole</th>
<th colspan="1">Nom</th>
<th colspan="1">Valeur</th>
<th colspan="1">Variation horaire</th>
<th colspan="1">Journalière</th>
<th colspan="1">Quotidienne</th>
<th colspan="1">Sigle</th>
</tr>
</thead>
<tbody id="liste-crypto" class="shadow-elements"></tbody>
</table>
</div>
<div id="left-panel">
<div id="pager" class="shadow-elements">
<div id="page-viewer">
<p>PAGE 1</p>
<span id="page-reset">Reset</span>
</div>
<button id="page-next" class="pager-elements">PAGE SUIVANTE</button>
<button id="page-before" class="pager-elements">
PAGE PRECEDENTE
</button>
</div>
<div id="fiats-table" class="frosted-glass">
<h3>MONNAIES FIATS</h3>
<table id="fiats-table-body">
<thead class="fiat-header">
<th>Sigle</th>
<th>Taux</th>
<th>Symbole</th>
<th>Pays</th>
</thead>
<tbody id="liste-fiats" class="shadow-elements">
</tbody>
</table>
<!-- <span id="arrow-bottom">👇</span> -->
</div>
</div>
</div>
</body>
</html>