-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (38 loc) · 942 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
35
36
37
38
39
40
41
<!DOCTYPE html>
<head>
<title>Zharktas's Private Place</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css" />
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("nav li").click(function(){
$(".active").removeClass("active");
$(this).addClass("active");
});
});
</script>
</head>
<body>
<div id="wrapper">
<header>
<h1>Zharktas's Private Place</h1>
<nav>
<ul>
<li class="active" id="home"><a>Home</a></li>
<li id="projects"><a>Projects</a></li>
<li id="cv"><a>CV</a></li>
<li id="gallery"><a>Gallery</a></li>
</ul>
</nav>
</header>
<div id="content">
<p>
This page is blank.
</p>
</div>
<footer>
© Jari-Pekka Voutilainen aka Zharktas
</footer>
</div>
</body>
</html>