Some basic HTML grammar
my home upper

Caution!! Although I am happy to share my research notes below with all visitors to my webpages, these pages are mainly designed for my own use and subject to change without warning. I do not guarantee the correctness of all contents as well.

Some basic HTML grammar -- from http://qqqweb.net/wwwjianzhan/wwwqqqwebcomcn/190.htm

在此要强调的是:希望大家先在自己电脑上的frontpage里面练习。而且frontpage里面有更多的效果,你自己选定了一种效果可以从"html"里面看到相应的语法——这叫做“自学成才”。非常希望大家可以学会先自己寻找答案,而不是去遇到问题就询问别人,自己找到的印象才深刻,问出来的永远是别人的。 也可以通过查看源文件的方法学习:网页上单击鼠标右键-->选择“查看源文件”,弹出一个.txt文件包含了这个网页的源代码,好好学习吧。 


一、基本标记 


标题 <h?>标题</h?>(?=1~6,改变标题字的大小)
字加大 <big>加大字</big>    字变小 <small>缩小字</small>
粗体字 <b>粗体</b>    斜体字 <i>斜体</i>   下划线 <u>下划线</u>
上标字 <sup>e=mc2</sup>   下标字 <sub>h2o</sub>
居中 <center>居中</center> 
基本字体大小 <basefont size>(取值范围从1到7,默认值为3)
改变字体大小 <font size=?>size=5</font> (?=1~7)
字体颜色 <font color="#rrggbb">color=red</font>(rgb色码或颜色名)
指定字体 <font face=?>face=verdana</font>(?=宋体,楷体等)
贴图 <img src="图片地址"> 
图片位置 <img src="url" align=top,bottom,middle,left,right >(分别为上、下、中、左、右的位置) 
图片取代文字 <img src="url" alt="这是个x">(无法显示图形时用)
图片尺寸 <img src="url" width=? height=?> (?以像素为单位)
图片边框 <img src="url" border=?> (?以像素为单位)
图片四周留白 <img src="url" hspace=? vspace=?> (?以像素为单位)

二、超链接

网址链接 <a href="url" target=_blank>http://www.google.com</a>   (target=_blank目标链接在新窗口中打开)

三、区段划分 

段落 <p></p>   换行 <br>   横线 <hr> 
横线厚度 <hr size=?>(?以像素为单位)   横线长度 <hr width=?> (?以像素为单位)
横线长度 <hr width=?%> (?与页宽相比较的百分比)   实横线 <hr noshade> (无立体效果)

四、背景颜色 

背景图案 <body background="图形文件名"> (图形文件格式为gif和jpg)
背景颜色 <body bgcolor=#rrggbb>   背景文字颜色 <body text=#rrggbb>
未链结点颜色 <body link=#rrggbb>   已链结点颜色 <body vlink=#rrggbb>
正在链结点颜色 <body alink=#rrggbb>

五、贴多媒体文件(包括 .wav .mp3 .rm .mpg .wma .swf 等等)

代码: <embed height=60 src="url" autostart="false" width="宽度" height="高度" loop="循环次数"></embed>
放个nike广告:<embed src="http://pya.cc/pyaimg/img/2003090508.wmv" autostart="false" width="480" height="410" loop="false"></embed> 
贴背景音乐:<bgsound src="url" loop="循环次数">

六.如何让字的移动: 

1)这是单向移动,direction: right, left, up, down 是移动的方向 

<marquee direction=right>啦啦啦,我从左向右移!</marquee>
<marquee direction=left>啦啦啦,我从右向左移!</marquee>
<marquee behavior=slide>啦啦啦,我只走一次就歇了!</marquee>

2)字在屏幕上来回左右晃,就象喝醉了,就象你那样,嘿嘿(主要用了behavior命令) 
<marquee behavior=alternate>啦啦啦,我来回走耶!</marquee> 

发html代码的时候要注意完整性,特别是引号,不能一边有一边没有,如果一次使用多种代码请记得对称性就像做数学题一样括号要成对{[()]},html语法也要成对出现<b><i><font color=red size=5 face=black>代码要对称</font></i></b>

 [ upper ] Welcome comments to me: jinhuaheynao.ac.cn [back to my Home]