-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 1.62 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
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>My Profile</title>
<meta name="Anne Costa" content="programmer">
<meta property="og:title" content="Le Wagon - The French innovative coding school">
<meta property="og:image" content="facebook-card.jpg">
<meta property="og:description" content="Programadora e fã da Dualipa.">
<meta property="og:site_name" content="Le Wagon"/>
<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">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cormorant+Garamond:wght@700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class='container'>
<div class='card'>
<h1>Anne Costa</h1>
<img src="images/profile.jpg" width="100px" height="100px" alt="Anne Costa" class="img-circle">
<p>
Programmer, designer and Dualipa's big fan.
</p>
<a href="#" class="btn">About me</a>
</div>
<div class='description card'>
<h2>Follow me</h2>
<ul class='list-inline'>
<li>
<a href="https://github.com/papillard" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://twitter.com/bpapillard" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
</li>
<li>
<a href="https://medium.com/@papillard" target="_blank">
<i class="fab fa-medium"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>
<!-- end of file -->