-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CV de Thibault</title>
</head>
<body>
<div class="container">
<div class="card-white" id="intro">
<h1>Hello, i'm Thibault ✌️</h1>
<img src="images/profile.jpeg" class="img-circle" alt="Thibault Bayard">
<p>I like sports and code. I want to learn to code to bring my ideas to life😎</p>
<a href="https://www.lewagon.com/fr" class="btn-blue" target ="_blank">Discover Le Wagon</a>
</div>
<div class="card-white" id="footer">
<h2>Check my social media</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/tbayard" target = "_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/thibaultbayard/" target = "_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/thibault_bayard/" target = "_blank">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>