-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JW's very personal page</title>
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/context.css">
</head>
<body bgcolor="#333330">
<div id="nav">
<ul id="menu">
<li id="a"><a href="index.html" style="color: green">About Me</a></li>
<!--个人简介-->
<li id="b"><a href="project.html">Project</a></li>
<!--我的工程-->
<li id="c"><a href="life.html">Life Events</a></li>
<!--我的大事件-->
<li id="d"><a href="dream.html">My Dream</a></li>
<!--我的梦-->
<li id="e"><a href="contact.html">Contact</a></li>
<!--联系方式-->
</ul>
</div>
<!--导航栏设置完成-->
<!--正文-->
<div id="context">
<p class="large">Welcome to My Page</p><br>
<img src="image/head.png">
<p class="mid">I'm now just a student</p>
<p class="mid">Nothing more to say :D</p>
</div>
</body>
</html>