This repository has been archived by the owner on Dec 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (133 loc) · 4.11 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<script type="text/javascript" src="./js/global.js"></script>
<link rel="icon" type="image/x-icon" href="./img/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/brands.min.css" />
<title>Mackee</title>
</head>
<body>
<section>
<div class="left">
<img src="./img/phone.png" alt="Phone" class="phone" />
</div>
<div class="right">
<div>
<h1>Mackee</h1>
<h2>Follow your favorite cryptocurrencies</h2>
<p>
A cryptomoney is a peer-to-peer currency, which doesn’t need any central bank. It can be used with a computer network. It uses the principles of cryptography and involves the user in the process of issuing and settling transactions. Thanks to our application, you will be able to track all cryptocurrencies’ stock prices. You can even search for specific cryptocurrencies and add them to your favorites in the “Let’s play!” tab.
</p>
</div>
</div>
</section>
<header>
<div class="logo">
<a href="./index.html"><img src="./img/logo.png" alt="Mackee" /></a>
</div>
<h1 class="title">
<a href="./index.html">Mackee</a>
</h1>
<nav>
<ul>
<li>
<a href="./index.html" class="active">Explore</a>
</li>
<li>
<a href="./trending.html">Trending</a>
</li>
<li>
<a href="./favorites.html">Favorites</a>
</li>
<li>
<a href="./ranking.html">Ranking</a>
</li>
<li>
<a href="./convert.html">Convert</a>
</li>
<li>
<a href="./learn.html">Learn</a>
</li>
<li>
<a href="./about.html">Who are we?</a>
</li>
<li>
<a href="./manage.html">Let’s play!</a>
</li>
</ul>
</nav>
</header>
<main>
<div id="loading"><i class="fa fa-spinner fa-pulse"></i> Loading... Please wait.</div>
<div id="content" class="hidden">
<h1 class="global-title">Random cryptocurrencies</h1>
<div id="random-coins"></div>
<div class="columns">
<div>
<h1 class="global-title">Most rising cryptocurrencies</h1>
<div id="up-coins"></div>
</div>
<div>
<h1 class="global-title">Most falling cryptocurrencies</h1>
<div id="down-coins"></div>
</div>
</div>
</div>
</main>
<footer>
<div class="top">
<div class="logo">
<a href="./index.html"><img src="./img/logo.png" alt="Mackee" /></a>
</div>
<div class="title">
<a href="./index.html">Mackee</a>
</div>
<nav>
<ul>
<li>
<a href="./index.html">Explore</a>
</li>
<li>
<a href="./trending.html">Trending</a>
</li>
<li>
<a href="./favorites.html">Favorites</a>
</li>
<li>
<a href="./ranking.html">Ranking</a>
</li>
<li>
<a href="./convert.html">Convert</a>
</li>
<li>
<a href="./learn.html">Learn</a>
</li>
<li>
<a href="./about.html">Who are we?</a>
</li>
<li>
<a href="./manage.html">Let’s play!</a>
</li>
</ul>
</nav>
</div>
<hr/>
<div class="bottom">
<div class="icons">
<a href="https://mackee.app" target="_blank" class="icon"><i class="fa fa-globe"></i></a>
<a href="https://www.facebook.com/Mackee-105889694362138/" target="_blank" class="icon"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.instagram.com/mackee.app/" target="_blank" class="icon"><i class="fab fa-instagram-square"></i></a>
</div>
<div class="legal">
<p class="line">Copyright © Aurélien Garnier & Rémi Legrand 2020</p>
<p class="line">Data provided by <a href="https://coinranking.com" target="_blank">Coinranking</a></p>
</div>
</div>
</footer>
<script type="text/javascript" src="./js/index.js"></script>
</body>
</html>