-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<title>My profile</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700|Roboto:300,400,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="card-white" id="introduction">
<h1>Hello, I'm Bome 😎</h1>
<img src="images/profile.png" class="img-circle" width="100px" alt="Bome">
<p>
I love Kaggle, machine learning and web-development. I'm an alumni @leWagon 🌍 and I love to design my personal page.
</p>
<a href="#" class="btn-blue">Discover My Portfolio</a>
</div>
<div class="card-white">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/iambome" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://twitter.com/databome" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
</li>
<li>
<a href="https://medium.com/@iambome" target="_blank">
<i class="fab fa-medium"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>