Html入门学习笔记02—ul、ol、frameset

很久很久以前学习html的笔记记录,很随意,但都是自己记录的,希望对需要的人有所帮助。

        本文使用word2013编辑并发布

        Postbird | There I am , in the world more exciting!

Postbird personal website .www.ptbird.cn

无序列表 (ul)

<ul type="">

<li> 内容</li>

</ul>

type = "disc square squre" 圆点的形式

css 实现 <ul calss="faceul"> 去掉点

Html入门学习笔记02—ul、ol、frameset_第1张图片

 

Html入门学习笔记02—ul、ol、frameset_第2张图片

 

 

 

 

有序列表(ol)

<ol>

<li>内容</li>

</ol>

type="i" start="2" type(排序的形式)start(从第几个开始排序)

Frameset 框架集 (主要用于将一个页面分割显示多个页面)

如果a.html 包括了b.html ,a.html不能有<body>和<body>的内容

<frameset cols="">

cols="%50,%50" ; cols="%50,*"(剩下的给b) ; cols="400px,300px"

<frame name="" src="a.html" noresize frameborder="0">

noresize 不能拖动

frameborder="0" 控制边框

name 表示框架的名字

frameset.html

Html入门学习笔记02—ul、ol、frameset_第3张图片

 

a.html

<body bgcolor="pink">

<a href="zhoujielun.html" target="frame2">chou</a><br/>

<a href="qiqin.html" target="frame2">qiqin</a>

</body>

b.html

<body bgcolor="red">

</body>

zhoujilun.html

<body bgcolor="gray">

music for chou

</body>

qiqin.html

<body>

music for qi

</body>

 

target 属性

_blank 打开全新页面

_self 替换本页面

_top

_parent

*或者在属性中直接写 frame 的名字

 

你可能感兴趣的:(Html入门学习笔记02—ul、ol、frameset)