读一读

设置控件为只读就好了。

readonly="readonly"

背景颜色会改成灰色,再用style

把background-color:white设为白色


<input type="checkbox/radio" checked>
<select><option selected></option></select>

多选单选使用checked来默认选择

下来选择使用selected来默认选择


target属性可以规定页面在哪里显示,例如有个iframe的name叫main,那么就可以通过target=main来规定页面显示在名字为main的iframe中。


<script src="可以引入外部js文件">

脚本标签,一般放在html的最后面,减少空白期


&lt -<    &rt  ->

很多,要用的时候再去查


<frameset>过时了

主要用

<iframe  src="引用的网页">

将引入的网页插入到本网页中,就是一个浮动的浏览器窗口


<form>
<input type=""> 
text password     输入和密码框
checkbox  复选框
radio name标识整合 单选框
button 按钮
submit 提交  value改变提交的名字

<select><option>下拉列表
<textarea> 文本域

可以用div布局,也可以用table布局,用百分比宽度,像素等,折腾的


属性

<div float:left> 设置浮动
clear:both 可以清除浮动

块元素

会以新行开始

<p> <h1> <ul> <div>


内联元素: <a> <b> <img>


<!-- 有序列表 -->
<ol type="A|a|I|i" start="F">
    <li>start为开始位置</li>
    <li>type为类型</li>
</ol>

<!-- 无序列表 -->
<ul type="circle|square|diac">
    <li>。。。</li>
</ul>

<dl><dt><dd>