-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.2/css/all.css">
<link rel="stylesheet" href="style.css">
<title>My Profile</title>
</head>
<body>
<div class="container">
<div class="card">
<header>
<h1>Hello, I'm Adrien</h1>
</header>
<img src="images/photo.jpg" class="img-circle" width="150" height="150">
<h2>About Me</h2>
<p>Developer blending tech and business strategy to create end-to-end e-commerce solutions.</p>
<a class="button" href="https://www.lewagon.com">Get In Touch</a>
</div>
<div class="card">
<h2>Follow Me</h2>
<ul class="list-inline social-links">
<li><a href="https://www.github.com/yourprofile" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.twitter.com/yourprofile" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/yourprofile" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
</body>
</html>