1)贴图:imgsrc=图片地址
2)加入连接:ahref=所要连接的相关地址写上你想写的字/a
3)在新窗口打开连接:ahref=相关地址target=_blank写上要写的字/a
4)移动字体(走马灯):marquee写上你想写的字/marquee
5)字体加粗:b写上你想写的字/b
6)字体斜体:i写上你想写的字/i
7)字体下划线:u写上你想写的字/u
8)字体删除线:s写上你想写的字/s
9)字体加大:big写上你想写的字/big
10)字体控制大小:h1写上你想写的字/h1(其中字体大小可从h1-h5,h1最大,h5最小)
11)更改字体颜色:fontcolor=#value写上你想写的字/font(其中value值在与ffffff(16位进制)之间
12)消除连接的下划线:ahref=相关地址style=text-decoration:none写上你想写的字/a
13)贴音乐:embedsrc=音乐地址width=宽度height=高度autostart=false
14)贴flash:embedsrc=flash地址width=宽度height=高度
15)贴影视文件:imgdynsrc=文件地址width=宽度height=高度start=mouseover
16)换行:br
17)段落:p段落/p
18)原始文字样式:pre正文/pre
19)换帖子背景:bodybackground=背景图片地址
20)固定帖子背景不随滚动条滚动:bodybackground=背景图片地址body bgproperties=fixed
21)定制帖子背景颜色:bodybgcolor=#value(value值见10)
22)帖子背景音乐:bgsound=背景音乐地址loop=infinite
23)贴网页:iframe.src=相关地址width=宽度height=高度/iframe
点击关闭窗口ahref=javascript.:top.window.close();点击关闭窗口/a!
请问如何去掉主页右面的滚动条? bodyscroll=no bodystyle=overflow-y:hidden
如何做到让一个网页自动关闭. html head OBJECTid=closestype=application/x-oleobjectclassid=clsid:adba6-d8ff-11cf--00aab7a11 paramname=Commandvalue=Close /object /head body 这个窗口会在10秒过后自动关闭,而且不会出现提示./body
如何在不刷新页面的情况下刷新css? style button{color:#;} /style buttonnclick=document.styleSheets[0].rules[0].style.color=‘‘‘‘red‘‘‘‘点击按钮直接修改style标签里button选择符使按钮改为 红色/button 请问如何让网页自动刷新? 在head部记入META.HTTP-EQUIV=Refreshc其中20为20秒后自动刷新,你可以更改为任意值。 如何让页面自动刷新? 方法一,用refresh
HTML代码片段如下: head meta. /head 5表示刷新时间 [Ctrl+A全部选择提示:你可先修改部分代码,再按运行]
方法二,使用setTimeout控制 imgsrc=/logo.gif script functionrl(){ document.location.reload() } setTimeout(rl,) /SCRIPT
如何让超链接没有下划线 在源代码中的HEAD…/HEAD之间输入如下代码: style.type=text/css!-- a{text-decoration:none} --/style
请问如何去掉IE的上下滚动条? bodystyle=‘‘‘‘overflow:scroll;overflow-y:hidden‘‘‘‘ /body
怎样才能把RealPlayer文件在网页做一个试听连接? embedheight=25 src=51js.rmtype=audio/x-pn-realaudio-pluginwidth=50autostart=falsec
如何用html实现浏览器上后退按钮的功能? ahref=javascript.:history.go(-1)点击后退/a 或者 scripthistory.back()/SCRIPT