-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (34 loc) · 1.03 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
<html>
<head>
<title>Mon Profile</title>
<meta name="description" content="Cette description sera indexée par Google, enjoy ^^">
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="card text-center" id="intro">
<h2>Salut, je suis François</h2>
<img src="images/logo.png" alt="moi" class="img-circle">
<p>Je fais Le Wagon en cours <strong>du soir</strong>, Rails en 3 mots ? It's magic 😂</p>
<a href="https://www.lewagon.com" class="btn-blue" target="_blank">Découvrez Le Wagon</a>
</div>
<div class="card text-center" id="footer">
<h3>Suivez-moi</h3>
<ul class="list-inline">
<li>
<a href="#">
<i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="#">
<i class="fab fa-linkedin-in"></i></a>
</li>
<li>
<a href="#">
<i class="fab fa-twitter"></i></a>
</li>
</ul>
</div>
</body>
</html>