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
/
about.html
137 lines (135 loc) · 5.15 KB
/
about.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
137
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="./css/about.css" />
<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>
<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">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" class="active">Who are we?</a>
</li>
<li>
<a href="./manage.html">Let’s play!</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h1 class="global-title">Our team, hand-picked from the brightest of them all</h1>
<ul class="people">
<li>
<img src="./img/aurelien.jpg" alt="Aurélien Garnier" />
<h2>Aurélien Garnier</h2>
<h3>Head Senior Developer</h3>
<p class="quote">
<i class="fa fa-angle-double-left"></i>
<span>TitCoin is the cryptocurrency of the future.</span>
<i class="fa fa-angle-double-right"></i>
</p>
<p class="biography">
Aurélien Garnier is a senior developer at Mackee.<br/>
After almost graduating from Massachusetts Institute of Technology, he decided to work with Rémi at Efrei Paris on Mackee.<br/><br/>
This project is based on cryptocurrencies because he claims to secretly be Satoshi Nakamoto, the inventor of Bitcoin. His goal has always been to make as much money as imaginable, and creating crypto was one of the best ways to do it.<br/><br/>
During this project, Aurélien was in charge of coding the APIs and the pages to list all the cryptocurrencies, as well as the algorithm to classify each currency, the list of favorites which allows a person to see what cryptocurrencies he is most interested in and he wants to follow.
</p>
</li>
<li>
<img src="./img/remi.jpg" alt="Rémi Legrand" />
<h2>Rémi Legrand</h2>
<h3>Chief Lead Manager</h3>
<p class="quote">
<i class="fa fa-angle-double-left"></i>
<span>Cryptocurrency is like a box of chocolates. You never know what you’re gonna get.</span>
<i class="fa fa-angle-double-right"></i>
</p>
<p class="biography">
Rémi Legrand is a developer and senior designer at Mackee. He met Aurélien at Efrei Paris and from their meeting, Mackee was born. Thanks to his skills in advanced Mathematics in Computer Science and in Economy, he managed to be part of this project and to brilliantly complete this website. He believes that cryptocurrencies are the best way to earn money, and this is why he promotes this project as one of the major revolutions of the XXI<sup>st</sup> century.<br/><br/>
During the creation of the website, Rémi lead the team with the design which was the guiding principle of the project. He also implemented the possibility to convert any currency / cryptocurrency into another and the possibility to manage the favorites cryptocurrencies.
</p>
</li>
</ul>
</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>
</body>
</html>