w3shool html study note

来源:互联网 发布:会员分销系统源码 编辑:程序博客网 时间:2024/04/26 06:23
html study notes
1.html tags
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<a href="http://www.w3school.com.cn">This is a link</a>
<img src="w3school.jpg" width="104" height="142" />
<hr>
<br></br>
2.文本格式化
<b></b>
<big></big>
<em></em> 强调
<i></i>
<small></small>
<sub></sub> 下标
<sup></sup> 上标
<pre>保留空格</pre>
<acronym title="World Wide Web">WWW</acronym> 鼠标移上去显示完整内容
<bdo dir="rtl">Here is some Hebrew text</bdo>  文字方向
<blockquote>这是长的引用。</blockquote> 引用缩进
<p>一打有 <del>二十</del> <ins>十二</ins> 件。</p> 删除和下划线
3.style
<body style="background-color:yellow">
<h1 style="font-family:verdana">A heading</h1>
<p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p>
4.table
<tr><th></th></tr>
<tr><td></td></tr>
无序表格
<ul><li></li><li></li></ul>".a" ".b" 
有序表格
<ol><li></li><li></li></ol>"1.a" "2.b"
<dl><dt></dt><dt></dt></dl>" a" " b"
5.表单输入
表单,包含表单元素的区域
<form>
</form>
表单元素
input/textarea/label/fieldset/legend/select/optgroup/option/button
<input type="text" name="firstname" />
<input type="radio" name="sex" value="male" /> //radio use name as group label, only one can be selected at one time
<input type="checkbox" name="bike" />
<input type="submit" value="Submit" />
6.图像
图像标签 <img><map><area>
<img src="boat.gif" alt="Big Boat">
7.背景
背景颜色
<body bgcolor="#000000">
<body bgcolor="rgb(0,0,0)">
<body bgcolor="black">
背景图片
<body background="clouds.gif">
<body background="http://www.w3school.com.cn/clouds.gif">
8.颜色管理
#FFFFFF rgb(abc)
9.框架
<frameset cols="25%,75%">
   <frame src="frame_a.htm">
   <frame src="frame_b.htm">
</frameset>
10.URL schemes
file
ftp
http
gopher
news
telnet
WAIS
11.script
<script type="text/javascript">
document.write("Hello World!")
</script>
<noscript>Your browser does not support JavaScript!</noscript>
12.事件属性
窗口事件
onload
onunload
表单元素
onchange
onsubmit
onreset
onselect
onblur
onfocus
图像事件
onabort
键盘事件
onkeydown
onkeypress
onkeyup
鼠标事件
onclick
ondbclick
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup
13.url 传输编码
url只能用ASCII字符,对于非ASCII,用"%hh"的格式
原创粉丝点击