首页 > 代码库 > html总结
html总结
无序列表
<ul> 标签定义了无序列表。
<li> 标签定义了列表项目。<li> 标签可用在有序列表 (<ol>) 和无序列表 (<ul>) 中。
<ol> 标签定义了有序列表。
type可以去取 disc circle square
有序列表type用阿拉伯数字 英文字母大小写 罗马字母大小写(i I)
代码:
<html>
<body>
<h4>一个无序列表:</h4>
<ul>
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ul>
</body>
</html>
一个无序列表:(*位置应该是一个圆形黑点)
*咖啡
*茶
*牛奶
代码:
<html>
<body>
<h4>一个有序列表:</h4>
<ol>
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>
</body>
</html>
一个有序列表:
1.咖啡
2.茶
3.牛奶
*框架集
主要用于分割显示多个页面
<frame> 标签定义和用法在 <frameset> 中定义一个框架。
如果a.html包含了其他页面(frameset)则要求a.html不能有body和body的内容
noresize:不能改变各个窗口大小
frameborder="0" 无边框
滚动条设置:<frame scrolling =#>#=yes,no,auto
target四个属性
_blank:表示打开一个全新的页面
-self:替换本页面
_top:整个浏览器窗口
_parent:父窗口
在target值中直接写对应的那个frame的名字
b.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body bgcolor = "yellow">
歌词大全
</body>
</html>
demo7.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<frameset cols="50%,*">
<frame name = "frame1" src="http://www.mamicode.com/demo8.html" frameborder="0"/>
<frame src="http://www.mamicode.com/b.html" name = "frame2" frameborder="0"/>
</frameset>
</html>
demo8.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body bgcolor = "red" >
<a href="http://www.mamicode.com/demo9.html"target="frame2">周杰伦</a><br/>
<a href="http://www.mamicode.com/demo10.html"target="frame2">齐秦<br/>
</body>
</html>
demo9.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body bgcolor = "blue">
周杰伦的歌曲
</body>
</html>
demo10.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body bgcolor="yellow" >
齐秦的歌曲
</body>
</html>
没有滚动轴:scrolling="no"
没有边框:noresize frameborder="0"
总体结构图
all.html
<frameset rows="20%,*">
<frame src="http://www.mamicode.com/top.html" scrolling="no"/>
<frameset cols="20%,*">
<frame src="http://www.mamicode.com/left.html" noresize frameborder="0"/>
<frame src="http://www.mamicode.com/right.html" name = "myframe" frameborder="0"/>
</frameset>
</frameset>
top.html
<img src = "http://www.mamicode.com/4.jpg" />(自己下载一张 当然 后边可以写上照片属性)
left.html
<body bgcolor="pink">
<ul>
<li><a href="http://www.mamicode.com/demo9.html" target="myframe">东风破</a></li>
<li><a href="http://www.mamicode.com/demo10.html" target="myframe">北方的狼</a></li>
</ul>
</body>
right.html
<body bgcolor="silver">
歌词大全
</body>
demo9.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body bgcolor = "blue">
东风破
</body>
</html>
demo10.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body bgcolor="yellow" >
北方的狼
</body>
</html>
本文出自 “12330937” 博客,请务必保留此出处http://12340937.blog.51cto.com/12330937/1882070
html总结