-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
56 lines (44 loc) · 1.33 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
<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" />
<script src="js/menu.js"></script>
</head>
<body>
<header>
<img src="images/logo.png">
<nav class="menu">
<a class="button"><img src="icon.png" /></a>
<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>
<li><a href="Projects.html">Projects</a></li>
</ul>
</nav>
</header>
<h1>James Kalunga Official Website</h1>
<main class="mainLayoutGrid">
<img src="images/jkpic3.jpeg" class="mypic3 gridItem">
<div class="gridItem">
<br>
<br>
<p class="quote1">"Persistence is the key to solve the repeated mistakes for greater outcome,
therefore keep pressing the button until the red signal turns green"
</p>
<br <br>
<br>
<br>
<p class="quote2"> "If you think you too small to make a difference,<br>
you haven't spent a night with a mosquito" -African quote
</p>
</div>
</main>
<footer>
©2019. JK All Rights Reserved
</footer>
</body>
</html>