-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
34 lines (33 loc) · 1005 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>选择</title>
<link href="/style.css" rel="stylesheet" />
<style>
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
li {
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>选择项目</h1>
<ul>
<li><a href="/demo/index.html">Demo</a></li>
<li><a href="/project/index.html">Project</a></li>
</ul>
</div>
</body>
</html>