-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.76 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My profile</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class= "box-presentation">
<h1>Hello, I'm Sami 👨🏾💻</h1>
<img src="images/sami.png" alt="Sami" width="100" height="100" class="img-circle">
<p>I love litterature and sports ⚽️📚. Travels are also important for me,
I will let you discover this through the following links 😌</p>
<a href="https://www.linkedin.com/in/sami-ziani-33551b93/" class="btn-violet">Discover my Profile</a>
</div>
<div class= "box-favorites">
<h2>Explore those links to understand my passions</h2>
<ul class="list-inline">
<li><a href="https://www.youtube.com/watch?v=cUVCBsfpRF0" target="_blank"><i class="fas fa-book"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=_ipl1mInKbY" target="_blank"><i class="fas fa-futbol"></i></a></li>
<li><a href="https://www.instagram.com/lesbulots_ontheroad/" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
<div class="box-links">
<h2>Follow Me</h2>
<ul class="list-inline">
<li><a href="https://github.com/sziani" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://twitter.com/home" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://medium.com/" target="_blank"><i class="fab fa-medium"></i></a></li>
</ul>
</div>
</div>
</body>
</html>