-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
62 lines (59 loc) · 2.01 KB
/
test.html
File metadata and controls
62 lines (59 loc) · 2.01 KB
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="en">
<head>
<meta charset="utf-8">
<title>Python挑战</title>
<style>
body{
background-color:rgb(0,0,0);
font-family:courier new;
}
#font {
color:rgb(0, 255, 0);
font-family:courier new, SimHei;
font-size: 18px;
}
a:visited {
color: rgb(0,255,0);
}
a {
color: rgb(0,255,0);
}
:lang(zh-Hans){
font-family:SimHei;
font-size:16px;
color:rgb(0,255,0)
}
</style>
</head>
<body>
<table width="800px" align="center">
<thead>
<th></th>
<th></th>
</thead>
<tbody>
<tr>
<td id="font">
Python Challenge
<br>
<br>
<br>
</td>
<td></td>
</tr>
<tr>
<td id="font">欢迎来到Python挑战。在这里,您将会受到一个考验您Python水平的挑战。<br></br>挑战一共有11关,其中每一关都会需要Python来解决。<br></br>这些关卡都不难,绝大部分题都是初学者可以做出来的。<br></br>Python挑战中会有一些题需要外部Module(模块),不过它们都可以从网上免费下载。<br></br>在您完成所有的关卡后将会收到一个神秘大礼包,它装着什么呢?没有人知道。那么,话不多说,点击下方链接开始挑战吧!</td>
<td></td>
</tr>
<tr height="100px">
<td id="font">制作人员:Luke,Rock,Benjamin</td>
</tr>
<tr height="200px" ></tr>
<tr>
<td id="font"><a href="https://www.khanacademy.org/meet-the-computing-professional/a/brenda-jin-mobile-prototyper-and-dj">开始挑战</a></td>
</tr>
</tbody>
</table>
</body>
</html>