-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.49 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
<!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 href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card" id="top">
<h1>Hi, my name is Sinan.</h1>
<h2>I am a developer in training.</h2>
<img src="images/me-square.jpg" class="img-circle" alt="Sinan Ucak">
</div>
<div class="card">
<p>In a previous life, I've had a number of experiences, from engineering to football coaching to starting a food truck.</p>
<p>Now, I'm training to be a dev in batch #326 at Le Wagon Lausanne. It's pretty awesome !</p>
<a href="https://www.lewagon.com/lausanne" target="_blank">
<button type="button" class="button">Check it out !</button>
</a>
</div>
<div class="card">
<h2>Follow me !</h2>
<a href="https://github.com/cini9" target="_blank">
<i class="fab fa-github-square social"></i>
</a>
<a href="https://www.facebook.com/sinan.ucak.1" target="_blank">
<i class="fab fa-facebook-square social"></i>
</a>
<a href="https://www.linkedin.com/in/sinan-ucak-ab179536/" target="_blank">
<i class="fab fa-linkedin social"></i>
</a>
</div>
</div>
</body>
</html>