-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (51 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My simple profile</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<script src="https://kit.fontawesome.com/fa68d01b0f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card-white">
<h1>Hi My name is Ben Nyaoro 😎</h1>
<img src="images/profilepic.jpg" alt="Profile pic" class="img-circle">
</div>
<div>
<p>I love coding, User Experience Design, web-development and boats🚣♂️. I started coding this year to improve my tech skills.</p>
<a href="http://github.com/Ben-Nyaoro" target="_blank" class="btn-blue">View my profile</a>
</div>
</div>
<div class="container">
<div class="card-white">
<h2>Web Development</h2>
<p>This is by far the most exciting part of it</p>
</div>
<div class="card-img">
<img src="images/webdev.png" alt="Web Dev pic">
</div>
</div>
<div class="container">
<div class="card-white">
<h2>User Exerience Design</h2>
<p>This is the beginning of the whole design journey. Very exciting as it involves users of the product.</p>
</div>
<div class="card-img">
<img src="images/uxdesign.jpg" alt="UX Design">
</div>
</div>
<div class="container">
<p>Follow me for more</p>
<ul class="list-inline">
<li><a href="#"><i class="fa-brands fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://github.com/Ben-Nyaoro"><i class="fa-brands fa-github"></i></a></li>
</ul>
</div>
</body>
</html>