-
Notifications
You must be signed in to change notification settings - Fork 0
/
myproject.html
57 lines (47 loc) · 1.66 KB
/
myproject.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
57
<!DOCTYPE html> <!-- 文档声明标签 -->
<html lang="zh-CN">
<!-- lang用来说明语言 zh-CN是中文 -->
<head>
<meta charset="UTF-8"> <!-- 字符集 编码方式 -->
<link rel="icon" href="catfootprint.ico" type="image/x-icon">
<meta name="description" content="This web is created with the aim of learning">
<title>WYX的网站2.0</title>
<link href="styles/style1.css" rel="stylesheet">
</head>
<body>
<nav>
<!-- 导航栏 -->
<ul>
<li class="mainpage"><a href="index.html">主页</a></li>
<li class="minigame"><a href="game.html">游戏</a></li>
<li class="myProject"><a href="myproject.html">项目</a></li>
<li class="aboutus"><a href="aboutus.html">关于</a></li>
</ul>
<form>
<input type="search" name="q" placeholder="要搜索的内容">
<!--搜索栏-->
<input type="submit" value="搜索">
</form>
</nav>
<main>
<article>
<p>这里是空白的工程界面,等待修改</p>
</article>
<!-- 侧边栏-->
<!-- <aside>
<h2>相关链接</h2>
<ul>
<li><a href="#">axriv</a></li>
<li><a href="#">scir官网</a></li>
<li><a href="#">哈工大官网</a></li>
<li><a href="#">哈工大研究生院</a></li>
<li><a href="#">哈工大计算学部</a></li>
</ul>
</aside> -->
</main>
<!-- 页脚 -->
<footer>
<p>© 2020-2022 保留所有权利 | 待定ing ICP 备 待定ing 号 | 配色方案来自FireFox</p>
</footer>
</body>
</html>