-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChallenge 10.html
More file actions
51 lines (48 loc) · 1.03 KB
/
Challenge 10.html
File metadata and controls
51 lines (48 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Python挑战_第9题</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">
<tr id="font" >
<td>
<br>
<br>
Challenge 10
<br>
<br>
<br>
<br>
</td>
</tr>
<tr id="font">
<td lang="zh-Hans">
找出π的第101至第110位
</td>
</tr>
</body>
</html>