-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 1.75 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
<html>
<head>
<title>
Miny2021 - Index
</title>
<style>
a:link {color:aqua;}/*未访问的链接显示为蓝色,text-decoration:none将下划线隐藏*/
a:visited {color:aquamarine;} /*用户已访问过的链接显示黑色*/
a:hover {color:coral;} /*鼠标放置在链接上时显示为粉色*/
a:active {color:yellow;}
</style>
<meta http-equiv="Contect-Type" content="text/html; charset=utf-8"></meta>
</head>
<body bgcolor="25,25,25">
<font color="White">
<p align="center">
Hello, world!
</p>
<a href="cookie.json" download="Bing_Cookie.json">Download Bing Cookie</a></br>
<a href="bear_movie_2023.html">熊出没·伴我熊芯</a></br>
<a href='harrypotterseven.html'>哈利波特7上</a></br>
<a href='harrypottersevendown.html'>哈利波特7下</a>
<a href='MineThreebody2.html'>我的三体4第二集</a>
<h1>
这个页面正在建设中,下面的为测试信息
</h1>
<h3>
下载文件?
</h3>
<a download="hello_world.html" href="hello_world.html">Click Here To Try to download.</a>
<h3>
表单?
</h3>
<form name="input" action="test.php" method="get">
text:<input type="text"><br>
password:<input type="password"><br>
radio:<br>
<input type="radio" name="test" value="A"><br>
<input type="radio" name="test" value="B"><br>
checkbox:<br>
<input type="checkbox" name="test2" value="C"><br>
<input type="checkbox" name="test2" value="D"><br>
submit:<input type="submit" value="Submit"><br>
</form>
</font>
</body>
</html>