-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
43 lines (38 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<nav class="navbar fixed-top navbar-light bg-dark">
<div class="container-fluid">
<a class="navbar-brand text-light">Krypto Dashboard</a>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</nav>
<table class="table table-bordered" style="margin-top: 90px" >
<thead>
<tr>
<th scope="col">UUID</th>
<th scope="col">Btc Price</th>
<th scope="col">Rank</th>
<th scope="col">Tier</th>
<th scope="col">Name</th>
<th scope="col">Price</th>
<th scope="col">Symbol</th>
</tr>
</thead>
<tbody id="data">
</tbody>
</table>
<script src="app.js"></script>
</body>
</html>