-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.htm
32 lines (32 loc) · 1.21 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
30
31
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>My Website</title>
<link rel="stylesheet" type="text/css" href="css/layout.css"/>
<link rel="stylesheet" type="text/css" href="css/home.css"/>
<script type="text/javascript" src="script/global.js"></script>
<script type="text/javascript" src="script/slideshow.js"></script>
</head>
<body>
<div id="main">
<div id="header">
<img src="images/logo.gif" alt="My Website"/>
</div>
<div id="navigation">
<ul>
<li><a href="index.htm">Home</a></li>
<li><a href="resume.htm">Resume</a></li>
<li><a href="websites.htm">Websites</a></li>
<li><a href="photos.htm">Photos</a></li>
<li><a href="contact.htm">Contact</a></li>
</ul>
</div>
<div id="content">
<h1>Welcome</h1>
<p id="intro">Welcome to my personal website. Here, you can <a href="music.htm">view webpages written by me</a> ,view
<a href="photos.htm"> my designed photos</a>, check <a href="blog.htm">my resume</a> and <a href="contact.htm">get in touch with me</a>.
</p>
</div>
</div>
</body>
</html>