html总结

来源:互联网 发布:淘宝网刷收藏 编辑:程序博客网 时间:2024/06/18 17:30
html:
html是超文本标记语言
后缀:.html
都是由一个个标签组成的
标签也是元素
全局架构:
<html>
<head></head>
<body></body>
</html>
注释<!---->
<head>标签:<meta charset="utf-8" />设置字符集
<title></title>
<meta http-equiv="refresh" content="3;url="http://www.baidu.com" />
<meta name="keywords" content="php 千峰" />
<meta name="description" conten="php 千峰" />
<body>标签的属性:background bgcolor width height 
常用标签:文本修饰:b/strong i/cite/em u s sub/sup
 格式控制:p br/ hr/ h1-h6 ul/ol/dl
字符实体
<marquee scrollamount/loop/direction></marquee>
<a>超链接: href(mailto/tel) 锚点:name href="#aed"

<font> size/color/face
<img>图片标签:src width height 
图像地图 <img src="ddada" usemap="sad" />
<map name="sad">
<area shape="
</map>
相对路径:./当前文件夹   ../上一级文件夹;
绝对路径:网络绝对路径和硬盘绝对路径
URL:协议://域名:端口/文件?参数
http://www.baidu.com:80/index.html?username=cc&password=123
多媒体标签:<video src="sad.mp4" loop="1" controls autoplay>

</video>
aduio
表格:<table width="30" height="30" border="1" bordercolor="red">
<caption>biaoti</caption> 
<tr>
<th>表头</th>
<th></th>
<th></th>
</tr>
<tr>
<td colspan="2"></td>
<!--被列合并了<td></td>-->
<td></td>
</tr>
<tr>
<td rowspan="2"></td>
<td></td>
<td></td>
</tr>
<tr>
<!--被行合并了<td></td>-->
<td></td>
<td></td>
</tr>
 </table>
分帧(框架)iframe :<a href="http://www.baidu.com" target="cc">百度一下</a>
<iframe border="1" frameborder="1" bordercolor="red" name="cc"></iframe>

<frameset rows="100,*" border="1" frameborder="1" bordercolor="red">
<frame href="top.html"></frame>
<frameset cols="20%,*">
<frame href="left.html"></frame>
<frame href="right.html"></frame>
</frameset>

</frameset> 
表单 :<form method="get/post" action="sajdka.html/php" ></form>
<input type="text/password/radio/checkbox(注意:name="asd[]")/file/submit/reset" name="sadsad" value="sad" />  

<input type="radio" name="sex" value="1" id="nan"/>
<label for="nan">男</label> 

<textarea rows="20" cols="30"></textarea>

<select>   如果多选的话,multiple
<option value="ds" selected></option>
</select>

<input type="submit" name="dosubmit" />
<input type="button" name="dosubmit" value="提交" />
<button>sahudh</button>
注意:上传文件enctype="multipart/form-data"

css
原创粉丝点击