-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.06 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
<!DOCTYPE html>
<html>
<head>
<title>Maxime</title>
<meta name="description" content="Maxime's profile">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card">
<h1>Maxime Froment</h1>
<img src="images/portrait.jpg" alt="Maxime's face" class="img-circle img-small">
<p>Life is a game. Now rerolling main character at Le Wagon.</p>
<a class="btn-blue" href="https://www.lewagon.com/" target="_blank">🎲 Reroll your character</a>
</div>
<div class="card">
<h2>Character Sheet</h2>
<!-- <div class="cardlet">
<h3></h3>
<p></p>
</div> -->
<br>
<div class="cardlet">
<h3>Chemistry: <i class="far fa-circle"></i></h3>
<img src="images/chemistry.jpg" alt="Chemistry" class="img-cardlet">
</div>
<div class="cardlet">
<h3>Alchemy: <i class="fas fa-bullseye"></i></h3>
<img src="images/alchemy.gif" alt="Mechanics" class="img-cardlet">
</div>
<div class="cardlet">
<h3>Mechanics: <i class="fas fa-times"></i></h3>
<img src="images/mechanics.gif" alt="Mechanics" class="img-cardlet">
</div>
</div>
<div class="card">
<ul class="list-inline icons">
<li>
<a href="https://www.facebook.com/maxime.froment.14" target="_blank">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/maxime-froment-99457a2/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://github.com/mfroment" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>