-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 827 Bytes
/
index.html
File metadata and controls
37 lines (37 loc) · 827 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
36
37
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<meta name="author" content="Repigeons"/>
<title>Njnu Repigeons</title>
<style>
body {
background-color: lightskyblue;
margin: 50px;
}
div.footer {
position: absolute;
bottom: 0;
width: 50%;
left: 25%;
}
</style>
</head>
<body>
<h1>Njnu Repigeons 团队主页</h1>
<hr/>
<div>
<p>我们就是鸽子,因此不存在会不会咕的问题。</p>
</div>
<div class="footer" align="center">
<p>
Copyright
©2019-<script>document.write(new Date().getFullYear().toString());</script>
Repigeons
</p>
<p>
南京师范大学 复读鸽开发团队
</p>
</div>
</body>
</html>