-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
29 lines (27 loc) · 1.16 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<title>Learning HTML and CSS </title>
<link type="text/css" rel="stylesheet" href="Resources/CSS/style.css" />
</head>
<body>
<header>
<h1>Learning HTML and CSS - A Self Paced Training</h1>
<nav>
<ul>
<li><a href="https://www.facebook.com/">Facebook</a></li>
<li><a href="https://twitter.com/">Twitter</a></li>
</ul>
</nav>
</header>
<main>
<p>
My name is Muhammad Sajid Barkaat. I was born and raised in Karachi, Pakistan. I studied computer science at PAF KIET. I am a Software Engineer by profession. And as a hobby I like to play video games, watch motor sport, boxing and surfing internet.
</p>
</main>
<footer>
<p>Created By: Muhammad Sajid Barkaat</p>
<p>Contact: sajidbarkaat@gmail.com</p>
</footer>
</body>
</html>