HTML语言:超文本标记语言
基本结构:
<html><head><body>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> --开始标签
<head>
网页上的控制信息
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>页面标题</title>
</head> <body>
页面显示的内容
</body>
</html> --结束标签
body 的属性:
bgcolor 页面背景色
text 文字颜色
topmargin 上页边距
leftmargin 左页边距
rightmargin 右页边距
bottommargin 下页边距
background 背景壁纸
1.一般标签:
格式控制标签
控制字体:<font face="Times New Roman, Times, serif" size="+3" color="#CC0066">测试文字</font>
face,字体;size,字体大小;color,控制颜色
字体加粗:<b></b>
倾斜:<i></i>
下划线:<u></u>
居中:<center></center>
换行:<br></br>
空格:
字体加粗(强调语气加强用):<strong></strong>
字体倾斜(强调语气加强):<em></em>
2.内容标签:
<h1></h1>·····<h6></h6> 标题标签(可自动换行),<h1>标题字体最大,<h6>标题字体最小
<p></p> 段落标签(段落之间空行)
<ol type="1"> 有序列表,序号为1,2,3·····引号中可以更改序号形式
<li> 内容</li>
</ol>
<ul> 无序列表
<li>内容</li>
</ul>
<div></div> 层标签(默认占一行)
<span></span> 层标签(默认占多大空间占多大空间)
3.重要标签:
超链接标签:<a href="超链接地址" target="_blank">超链接的文字</a> _blank 是在新窗口打开。
图片标签: <img src="图片地址" alt="文字" width=" " height=" " />
4.表格标签:
<table></table> 表格
<tr></tr>行
<td></td>单元格