-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchat.html
55 lines (52 loc) · 1.46 KB
/
chat.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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title> 聊天室 - LAOI </title>
<link rel="stylesheet" href="https://laoi-offical.github.io/css/style.css">
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
.footer {
padding: 20px;
text-align: center;
background: #ddd;
margin-top: 20px;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="/">主页</a></li>
<li><a href="/problem">题库</a></li>
<li><a class="active" href="/contest">比赛</a></li>
<li><a class="active" href="/chat">公聊</a></li>
<li><a class="active" href="/forum">论坛</a></li>
<li><a class="active" href="/about">关于</a></li>
<li><a class="active" href="/login">登录</a></li>
<li><a class="active" href="/sin">注册</a></li>
</ul>
<iframe src="https://my.cbox.ws/LAOIChattingBox" width="100%" height="550" allowtransparency="true" frameborder="0"></iframe>
<div class="footer">
<p>Copyright(c) 2022-2023 LAOI保留所有权利</p>
<a href="/judgement" style="text-decoration: none;color: #3498db">陶片放逐</a>
</div>
</body>
</html>