-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1023 Bytes
/
index.html
File metadata and controls
35 lines (32 loc) · 1023 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>CS2306-524</title>
<style>
body {
background-image: url("bg.webp");
background-size: cover;
}
.box {
width: 200px;
height: 50px;
background-color: white;
margin: 10px auto;
text-align: center;
line-height: 50px;
cursor: pointer;
}
.box:hover {
background-color: aqua;
}
</style>
</head>
<h1>这是524寝室的寝室主页</h1>
<body>
<div class="box" onclick="window.location.href='https://plafle.github.io/CS2306/'">返回班级首页</div>
<div class="box" onclick="window.location.href='https://plafle.github.io/web_practice/'">冯元宁</div>
<div class="box" onclick="window.location.href='https://wsn18381187.github.io/homework/'">王司南</div>
<div class="box" onclick="window.location.href='https://zdhyy.github.io/hust.awayzyx/'">何昱洋</div>
<div class="box" onclick="window.location.href='https://humingzhen.github.io/hmz592/'">胡名桢</div>
</body>
</html>