html简单网页代码(制作网页代码大全)
太low了,网页居然还用这么老掉牙的特效!弄个粗体字,下划线就是突出重点了?真是一股浓浓的乡村风扑面而来;弄个图在页面飘来飘去就是动画效果了,你要这么认为的话那我只能保持沉默了。在html5占领着整个互联网之时,想透过网页抓住所有人的眼球,因循守旧是行不通的。因此,有你不能不知道的html常用代码。只有熟悉掌握了常用的html代码,你才能在编写网页的时候做到行云流水,用处处流露着细腻和创意的动效细节打动所有人。
在这里还是要说一下我自己建的前端javascript学习交流群:574462090,不管你是小白还是大牛,小编我都挺欢迎,小白嘛,多问点问题也就学好了,不定期分享干货,包括最新的2017年前端学习资料,欢迎初学和进阶中的小伙伴。
html代码大全:结构性定义
文件类型<html></html> (放在档案的开头与结尾)
文件主题<title></title> (必须放在「文头」区块内)
文头<head></head> (描述性资料,像是「主题」)
文体<body></body> (文件本体)
标题<h?></h?> (从1到6,有六层选择)
标题的对齐 <h?align=left|center|right></h?>
区分<div></div>
区分的对齐 <divalign=left|right|center|justify></div>
引文区块<blockquote></blockquote> (通常会内缩)
强调<em></em> (通常会以斜体显示)
特别强调<strong></strong> (通常会以加粗显示)
引文<cite></cite> (通常会以斜体显示)
码<code></code> (显示原始码之用)
样本<samp></samp>
键盘输入<kbd></kbd>
变数<var></var>
定义<dfn></dfn> (有些浏览器不提供)
地址 <address></address>
大字<big></big>
小字<small></small>
与外观相关的标签(作者自订的表现方式)
加粗<b></b>
斜体<i></i>
底线<u></u> (尚有些浏览器不提供)
删除线<s></s> (尚有些浏览器不提供)
下标<sub></sub>
上标<sup></sup>
打字机体<tt></tt> (用单空格字型显示)
预定格式<pre></pre> (保留文件中空格的大小)
预定格式的宽度<pre width=?></pre>(以字元计算)
向中看齐<center></center> (文字与图片都可以)
闪耀<blink></blink> (有史以来最被嘲弄的标签)
字体大小 <fontsize=?></font>(从1到7)
改变字体大小 <fontsize=+|-?></font>
基本字体大小 <basefontsize=?> (从1到7; 内定为3)
字体颜色 <fontcolor=”#$$”></font>($$为颜色代码)
2
html代码大全:修改页面的实用性html代码
1)贴图:<img src=”图片地址”>
2)加入连接:<a href=”所要连接的相关地址”>写上你想写的字</a>
3)在新窗口打开连接:<a href=”相关地址” 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)更改字体颜色:<font color=”#value”>写上你想写的字</font>(其中value值在000000与ffffff(16位进制)之间
12)消除连接的下划线:<a href=”相关地址” style=”text-decoration:none”>写上你想写的字</a>
13)贴音乐:<embed src=”音乐地址” width=”宽度” height=”高度” autostart=false>
14)贴flash: <embed src=”flash地址” width=”宽度” height=”高度”>
15)贴影视文件:<img dynsrc=”文件地址” width=”宽度” height=”高度” start=mouseover>
16)换行:<br>
17)段落:<p>段落</p>
18)原始文字样式:<pre>正文</pre>
19)换帖子背景:<body background=”背景图片地址”>
20)固定帖子背景不随滚动条滚动:<body background=”背景图片地址” body
bgproperties=fixed>
21)定制帖子背景颜色:<body bgcolor=”#value”>(value值见10)
22)帖子背景音乐:<bgsound=”背景音乐地址” loop=infinite>
23)贴网页:<iframe. src=”相关地址” width=”宽度” height=”高度”></iframe>
3
html代码大全:常常会遇到的问题
点击关闭窗口
<a href=”
javascript.:top.window.close();”>点击关闭窗口</a>!
请问如何去掉主页右面的滚动条?
<body scroll=”no”>
<body style=”overflow-y:hidden”>
如何做到让一个网页自动关闭.
<html>
<head>
<object id=closes type=”application/x-oleobject” classid=”clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11″>
<param name=”command” value=”close”>
</object>
</head>
<body >
这个窗口会在10秒过后自动关闭,而且不会出现提示. </body>
如何在不刷新页面的情况下刷新css?
<style>
button{ color:#000000;}
</style>
<button nclick=document.stylesheets[0].rules[0].style.color=‘‘‘‘red‘‘‘‘>点击按钮直接修改style标签里button选择符使按钮改为 红色</button>
请问如何让网页自动刷新?
在head部记入<meta. http-equiv=”refresh” c>其中20为20秒后自动刷新,你可以更改为任意值。
如何让页面自动刷新?
方法一,用refresh
html 代码片段如下:
<head>
<meta. http-equiv=”refresh” c>
</head>
5表示刷新时间
[ctrl+a 全部选择 提示:你可先修改部分代码,再按运行]
方法二,使用settimeout控制
<img src=/logo.gif>
<script>
function rl(){
document.location.reload()
}
settimeout(rl,2000)
</script>
如何让超链接没有下划线
在源代码中的<head>…</head>之间输入如下代码:
<style. type=”text/css”> <!–
a { text-decoration: none}
–> </style>
请问如何去掉ie的上下滚动条?
<body style=‘‘‘‘overflow:scroll;overflow-y:hidden‘‘‘‘>
</body>
怎样才能把realplayer文件在网页做一个试听连接?
<embed height=25 src=51js.rm type=
audio/x-pn-realaudio-plugin width=50 autostart=”false” c>
如何用html实现浏览器上后退按钮的功能?
<a href=”java script.:history.go(-1)”>点击后退</a>
或者
<script> history.back() </script>
4
html代码大全:你不一定知道的技巧
16. ncontextmenu=”window.event.returnvalue=false” 将彻底屏蔽鼠标右键
<table borderncontextmenu=return(false)><td>no</table> 可用于table
17. <body nselectstart=”return false”> 取消选取、防止复制
18.onpaste=”return false” 不准粘贴
19.oncopy=”return false;” ncut=”return false;” 防止复制
20. <link rel=”shortcut icon”href=”favicon.ico”> ie地址栏前换成自己的图标
21. <link rel=”bookmark”href=”favicon.ico”> 可以在收藏夹中显示出你的图标
22. <inputstyle=”ime-mode:disabled”> 关闭输入法
23. 永远都会带着框架
<script. language=”javascript”><!–
if (window == top)top.location.href = “frames.htm”; //frames.htm为框架网页
// –></script>
24. 防止被人frame.
<script. language=javascript><!–
if (top.location != self.location)top.location=self.location;
// –></script>
25. 网页将不能被另存为
<noscript><iframe.src=*.html></iframe></noscript>
26. 查看网页源代码
<input type=button value=查看网页源代码
onclick=”window.location = “view-source:”+”http://www.pconline.com.cn””>
27.删除时确认
<a href=”javascript:if(confirm(“确实要删除吗?”))location=”boos.asp? &areyou=删除&page=1″”>删除</a>
28.屏蔽功能键shift,alt,ctrl
<script>
function look(){
if(event.shiftkey)
alert(“禁止按shift键!”);//可以换成alt ctrl
}
document.onkeydown=look;
</script>
29. 网页不会被缓存
<meta. http-equiv=”pragma” content=”no-cache”>
<meta. http-equiv=”cache-control”content=”no-cache, must-revalidate”>
<meta. http-equiv=”expires”content=”wed, 26 feb 1997 08:21:57 gmt”>
或者<meta. http-equiv=”expires”content=”0″>
30.怎样让表单没有凹凸感?
<input type=text style=”border:1 solid #000000″>
或 <input type=text style=”border-left:none;border-right:none; border -top:none; border-bottom: 1 solid#000000″></textarea>
31.不要滚动条?
让竖条没有:
<body style=”overflow:scroll;overflow-y:hidden”>
</body>
让横条没有:
<body style=”overflow:scroll;overflow-x:hidden”>
</body>
两个都去掉?更简单了
<body scroll=”no”>
</body>
32.怎样去掉图片链接点击后,图片周围的虚线?
<a href=”#”nfocus=”this.blur()”><img src=”logo.jpg”border=0></a>
33.电子邮件处理提交表单
<form. name=”form1″method=”post” action=”mailt****@***.com”enctype=”text/plain”>
<input type=submit>
</form>
34.在打开的子窗口刷新父窗口的代码里如何写?
window.opener.location.reload()
35.如何设定打开页面的大小
<body nload=”top.resizeto(300,200);”>
打开页面的位置<bodynload=”top.moveby(300,200);”>
36.在页面中如何加入不是满铺的背景图片,拉动页面时背景图不动
<style>
body
{background-image:url(logo.gif); background-repeat:no-repeat;
background-position:center;background-attachment: fixed}
</style>
37. 检查一段字符串是否全由数字组成
<script. language=”javascript”><!–
function checknum(str){return str.match(//d/)==null}
alert(checknum(“1232142141”))
alert(checknum(“123214214a1”))
// –></script>
38. 获得一个窗口的大小
document.body.clientwidth; document.body.clientheight
39. 怎么判断是否是字符
if (/[^/x00-/xff]/g.test(s)) alert(“含有汉字”);
else alert(“全是字符”);
40.textarea自适应文字行数的多少
<textarea rows=1 name=s1 cols=27npropertychange=”this.style.posheight=this.scrollheight”>
</textarea>
41. 日期减去天数等于第二个日期
<script. language=javascript>
function cc(dd,dadd)
{
//可以加上错误处理
var a = new date(dd)
a = a.valueof()
a = a – dadd * 24 * 60 * 60 * 1000
a = new date(a)
alert(a.getfullyear() + “年” + (a.getmonth() +1) + “月” + a.getdate() + “日”)
} cc(“12/23/2002”,2)
</script>
42. 选择了哪一个radio
<html><script. language=”vbscript”>
function checkme()
for each ob in radio1
if ob.checked then window.alert ob.value
next
end function
</script><body>
<input name=”radio1″ type=”radio”value=”style” checked>style.
<input name=”radio1″ type=”radio”value=”barcode”>barcode
<input type=”button” value=”check”nclick=”checkme()”>
</body></html>
43.脚本永不出错
<script. language=”javascript”>
<!– hide function killerrors(){return true;} window.onerror = killerrors;// –>
</script>
44.enter键可以让光标移到下一个输入框
<input nkeydown=”if(event.keycode==13)event.keycode=9″>