-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (66 loc) · 2.23 KB
/
index.html
File metadata and controls
79 lines (66 loc) · 2.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>网页制作的基本代码</title>
</head>
<body>
<div id="container" style="width:753px">
<div id="header" style="background-color:#FFA500;height:80px;">
<h1 style="margin-bottom:0;">主要的网页代码总结</h1></div>
<!--首部-->
<div id="menu" style="background-color:#FFD700;height:500px;width:150px;float:left;">
<b><a href="mang\text.html">html元素</a></b><br>
<hr>
<b><a href="mang\txt.html">html文本格式化</a></b><br>
<hr>
<b><a href="mang\table.html">html表格</a></b><br>
<hr>
<b><a href="mang\list.html">html列表</a></b><br>
<hr>
<b><a href="mang\link.html">html链接</a></b><br>
<hr>
<b><a href="mang\forms.html">html表单</a></b><br>
<hr>
<b><a href="mang\CSSreference.html">css外部引用</a></b><br>
<!--<b><a href="mang\attribute.html">html属性</a><br></b>-->
</div>
<!--左 -->
<div id="content" style="background-color:#EEEEEE;height:500px;width:600px;float:left;">
<table class="reference" border="1" style="font-size:110%">
<tr>
<th width="130">开始标签</th>
<th width="130">元素内容/含义</th>
<th width="130">结束标签</th>
</tr>
<tr>
<td>< p ></td>
<td>我是段落</td>
<td></p></td>
</tr>
<tr>
<td>< a href="链接地址" ></td>
<td>我是链接</td>
<td></a></td>
</tr>
<tr>
<td>< br ></td>
<td>换行</td>
<td></td>
</tr>
</table>
<br>
<ul>
<li>元素以标签开始</li>
<li>元素以标签结束</li>
<li>元素的内容是开始标签与结束标签之间的内容</li>
<li>大多数 HTML 元素可拥有属性</li>
</ul>
</div>
<!--右-->
<div id="footer" style="background-color:#FFA500;clear:both;text-align:center;">个人所有</div>
</div>
<!--尾部-->
</body>
</html>