-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (57 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>中文编程实验室</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f5f5f5;
font-family: "Microsoft YaHei", sans-serif;
}
.container {
text-align: center;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
color: #333;
margin-bottom: 2rem;
}
.enter-button {
display: inline-block;
padding: 1rem 2rem;
font-size: 1.2rem;
color: white;
background-color: #4CAF50;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.enter-button:hover {
background-color: #45a049;
}
.description {
margin-top: 2rem;
color: #666;
max-width: 600px;
line-height: 1.6;
}
</style>
</head>
<body>
<div class="container">
<h1>中文编程实验室</h1>
<a href="lab.html" class="enter-button">进入实验室</a>
<div class="description">
欢迎道友来到中文编程实验室!在这里,我们一起思考中文编程的可能性。
</div>
</div>
</body>
</html>