-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.5 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/256a2775df.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card">
<h1>Hi ! I'm <u>Alexis</u>👾</h1>
<img src="images/New.jpg" alt="Alexis" class="img-circle">
<h2>Alexis Ferrere</h2>
<p>I'm a soon to be <strong>full-stack dev</strong> 💻 ! I love traveling and basketball 🏀. <br> I've joined Le Wagon because <strong>coding is my passion</strong> and I want to help people with <strong>my apps</strong></p>
<a href="#" target="_blank" class="btn-pink">Le wagon</a>
</div>
<div class="card">
<h3>Follow me</h3>
<ul id="sociale">
<li class="list-inline">
<a href="#" target="_blank" class="sociale-green">
<i class="fa-brands fa-github"></i>
</a>
</li>
<li class="list-inline">
<a href="#" target="_blank" class="sociale-green">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li class="list-inline">
<a href="#" target="_blank" class="sociale-green">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>