-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (43 loc) · 1.37 KB
/
index.html
File metadata and controls
61 lines (43 loc) · 1.37 KB
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
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My profile</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.2/css/all.css">
</head>
<body>
<div class="container">
<div class="card-white text-center">
<img src="images/profile.jpg" class="img-circle" width="120px" alt="profil">
<h1>Bonjour, je suis Farzana</h1>
<h2>Programmeur 💻</h2>
<p>
Je voudrais apprendre à développer afin de créer des applications en imagerie médicale.
</p>
<a href="#" class="btn-blue">Discover Le Wagon</a>
</div>
<div class="card-white text-center">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/abulkalamazad" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://twitter.com/abulkalamazad" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
</li>
<li>
<a href="https://medium.com/@abulkalamazad" target="_blank">
<i class="fab fa-medium"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>