forked from Waters000/coinhiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorites.html
64 lines (58 loc) · 2.48 KB
/
favorites.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
<!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/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./assets/css/fav-style.css">
<link rel="shortcut icon" href="./assets/img/bitcoin.png" type="image/x-icon">
<title>Favorites | CoinHiz</title>
</head>
<body class="fav-body">
<!-- Nabvar -->
<nav class="bg-green-800 text-gray-100">
<div class="container mx-auto">
<div class="flex flex-wrap justify-between">
<div class="flex w-full lg:w-1/2 justify-center lg:justify-start">
<h1 class="text-xl font-bold p-3">CoinHiz</h1>
</div>
<div class="flex flex-row w-full lg:w-1/2 justify-center lg:justify-end nav-links">
<a class="p-3 hover:bg-gray-100 hover:text-gray-700 transition" href="/coinhiz/">HOME</a>
<a class="p-3 hover:bg-gray-100 hover:text-gray-700 transition" href="/coinhiz/atm">ATM</a>
<a class="p-3 hover:bg-gray-100 hover:text-gray-700 transition" href="/coinhiz/favorites">FAVORITES</a>
</div>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero">
<div class="site-title">
<h1>CoinHiz</h1>
</div>
<div class="page-title">
<h1>FAVORITES</h1>
</div>
</section>
<!-- Favorites -->
<section class="fav-coin-container">
<div class="d-flex flex-column align-items-center">
<div class="col-12 col-md-8 p-2">
<h2 class="p-3 text-center border-bottom fw-bold">My Favorite Coins</h2>
</div>
<div id="fav-card" class="col-12 col-md-10 col-lg-8 p-2">
</div>
</div>
</section>
<!--footer-->
<footer class="bg-dark mt-5 text-muted d-flex justify-content-center align-items-center fav-footer">
<div class="col-10 text-center py-4">
<!-- copyright-->
<p>Copyright © 2022 CoinHiz. All rights reserved.</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>