-
Notifications
You must be signed in to change notification settings - Fork 0
/
styling.html
39 lines (36 loc) · 1.03 KB
/
styling.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<div class="header">
<h1>Kirui Aron Kipngeno - Samurrai</h1>
</div>
<!-- Introduction Section -->
<div class="introduction">
<h2>Introduction</h2>
<p>I am Kirui Aron Kipngeno from Bomet County, Kenya. I am a freshman at JKUAT.<br> I am 20 years old and currently pursuing Computer Science with immense interest in Programming.</p>
</div>
<!-- Skills Section -->
<div class="skills">
<h2>Skills</h2>
<ul>
<li>Football</li>
<li>Swimming</li>
<li>Coding</li>
<li>Transctional banking</li>
</ul>
</div>
<!-- Contact Section -->
<div class="contact">
<h2>Contact Information</h2>
<a href="mailto: kirui1420@gmail.com">Email</a>
<a href="https://www.linkedin.com/in/aron-kirui-722850274/">LinkedIn</a>
</div>
</body>
</html>