-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<title>Profil Page</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link href="https://fonts.googleapis.com/css2?family=Staatliches&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Staatliches&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="card">
<h1>Hello, I'm Maxime</h1>
<img src="images/photo_id.jpg" width="100px" alt="Maxime Lapraye" class="img-circle">
<p>
"I"m learning to code a lot, passionate about digital marketing I also love motorbikes 🏍️ and music."
</p>
<a href="#" class="btn-green">Discover Le Wagon</a>
</div>
<div class="card">
<h2> Marketing Digital </h2>
<p> I love to <strong>help </strong>business <strong>develop their strategy online.</strong></p>
</div>
<div class="card">
<h2>Follow me</h2>
<ul class="list-inline">
<li >
<a href="https://github.com/papillard" target="_blank" class="social-icons">
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a href="https://github.com/papillard" target="_blank" class="social-icons">
<i class="fab fa-soundcloud"></i>
</a>
</li>
<li>
<a href="https://github.com/papillard" target="_blank" class="social-icons">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>