-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello_world.html
More file actions
56 lines (42 loc) · 1.1 KB
/
hello_world.html
File metadata and controls
56 lines (42 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>小新</title>
</head>
<body>
<!--注释-->
<!--换行标签 br-->
白日依山尽,<br>
黄河入海流。
<!--标题标签 h1~h6-->
黑马旅游网<br>
<h1>黑马旅游网</h1>
<h2>黑马旅游网</h2>
<h3>黑马旅游网</h3>
<h4>黑马旅游网</h4>
<h5>黑马旅游网</h5>
<h6>黑马旅游网</h6>
<!--段落标签 p-->
<p>
1.黑马旅游网 1.黑马旅游网 1.黑马旅游网 1.黑马旅游网
</p>
<p>
2.黑马旅游网
</p>
<!--显示一条水平线 hr-->
<hr color = 'red'>
<!--加粗 b-->
<b>白日依山尽</b>
<hr>
<!--斜体 i-->
<i>白日依山尽</i>
<br>
<!--字体标签 font-->
<font color = "green" size = "4" face = "楷体">白日依山尽</font>
<br>
<font color = "#FF00FF" size = "4" face = "楷体">白日依山尽</font>
</body>
</html>