forked from jskalu/Refcodeproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 918 Bytes
/
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
<html>
<head>
<title>My Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css"/>
</head>
<body>
<header>
<img src="images/logo.png" width="70">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="Resume.html">Resume</a></li>
<li><a href="links.html">Links</a></li>
</ul>
</nav>
</header>
<h1>James Kalunga Official Website</h1>
<img src="images/JKpic.jpg" width="300">
<p>Persistence is the key to solve the repeated mistakes for greater outcome,
therefore keep pressing the button until the red signal turns green.
</p>
<p>[email protected]</p>
<section></section>
<footer>
©2019. JK All Rights Reserved
</footer>
</body>
</html>