HTML 即超文本標(biāo)記語言,是目前應(yīng)用最為廣泛的語言之一,是組成一個(gè)網(wǎng)頁的主要語言。在現(xiàn)今這個(gè) HTML5 華麗麗地占領(lǐng)了整個(gè)互聯(lián)網(wǎng)的時(shí)候,如果想要通過網(wǎng)頁抓住瀏覽者的眼球光靠因循守舊是不行的,程序猿們需要掌握一些必須知道的 HTML 常用代碼,因?yàn)橹挥惺煜ふ莆樟顺S玫?HTML 代碼,程序猿們?cè)诰帉懢W(wǎng)頁的時(shí)候才可以做到流暢美觀,用細(xì)膩的思維和創(chuàng)意的細(xì)節(jié)效果打動(dòng)并留住網(wǎng)頁瀏覽者。
font-size | 字號(hào)大小 |
font-style | 字體格式 |
font-weight | 字體粗細(xì) |
color | 文本顏色 |
提示:注意使用網(wǎng)頁安全色.
text-decoration | 參數(shù) |
underline | 為文字加下劃線 |
overline | 為文字加上劃線 |
line-through | 為文字加刪除線 |
blink | 使文字閃爍 |
none | 不顯示上述任何效果 |
背景
background-color | 設(shè)置背景色 | |
背景圖片 | background-image: url(URL) | URL就是背景圖片的存放路徑,none表示無。 |
背景圖片重復(fù) | background-repeat: 參數(shù) | |
參數(shù)取值范圍 | ||
no-repeat | 不重復(fù)平鋪背景圖片 | |
repeat-x | 使圖片只在水平方向上平鋪 | |
repeat-y | 使圖片只在垂直方向上平鋪 | 如果不指定背景圖片重復(fù)屬性,瀏覽器默認(rèn)的是背景圖片向水平和垂直兩個(gè)方向平鋪 |
背景圖片固定 | background-attachment: 參數(shù) | |
參數(shù)取值范圍 | fixed:網(wǎng)頁滾動(dòng)時(shí),背景圖片相對(duì)于瀏覽器的窗口而言,固定不動(dòng) | scroll:網(wǎng)頁滾動(dòng)時(shí),背景圖片相對(duì)于瀏覽器的窗口而言,一起滾動(dòng) |
單詞間距 | word-spacing | |
字母間距 | letter-spacing | |
文本對(duì)齊 | text-align | |
參數(shù)的取值 | left:左對(duì)齊
right:右對(duì)齊 justify:相對(duì)左右兩端對(duì)齊 |
|
垂直對(duì)齊 | vertical-align | |
參數(shù) | top:頂對(duì)齊
bottom:底對(duì)齊 text-top:相對(duì)文本頂對(duì)齊 text-bottom:相對(duì)文本底對(duì)齊 baseline:基準(zhǔn)線對(duì)齊 middle:中心對(duì)齊 sub:以下標(biāo)的形式顯示 super:以上標(biāo)的形式顯示 |
|
文本縮進(jìn) | text-indent: 縮進(jìn)距離 | |
顯示樣式 | display | block:塊級(jí)元素,在對(duì)象前后都換行
inline:在對(duì)象前后都不換行 list-item:在對(duì)象前后都換行,增加了項(xiàng)目符號(hào) none:無顯示 |
height | 高度 |
width | 寬度 |
padding | 內(nèi)邊距 |
margin | 外邊距 |
float(浮動(dòng)) | 可以讓塊級(jí)元素在一行中排列,例如橫向菜單。 |
clear | 清除浮動(dòng) |
樣式 | border style | none:無邊框
dotted:邊框?yàn)辄c(diǎn)線 dashed:邊框?yàn)殚L(zhǎng)短線 solid:邊框?yàn)閷?shí)線 double:邊框?yàn)殡p線 |
寬度 | border width | |
顏色 | border color |
list-style-type | 列表樣式 | 不同瀏覽器的列表符可能不相同,可能會(huì)影響到網(wǎng)頁,所以網(wǎng)頁中的列表大多都是由背景圖片顯示 |
cursor | 鼠標(biāo)形狀參數(shù) | style="cursor:hand" 手形
style="cursor:crosshair" 十字形 style="cursor:text" 文本形 style="cursor:wait" 沙漏形 style="cursor:move" 十字箭頭形: style="cursor:help" 問號(hào)形 style="cursor:e-resize" 右箭頭形 style="cursor:n-resize" 上箭頭形 style="cursor:nw-resize" 左上箭頭形 style="cursor:w-resize" 左箭頭形 style="cursor:s-resize" 下箭頭形 style="cursor:se-resize" 右下箭頭形 style="cursor:sw-resize" 左下箭頭形 |
文件類型 | 放在檔案的開頭與結(jié)尾 | <html></html> |
文件主題 | 必須放在「文頭」區(qū)塊內(nèi) | <title></title> |
文頭 | 描述性資料,像是「主題」 | <head></head> |
文體 | 文件本體 | <body></body> |
標(biāo)題 | 從1到6,有六層選擇 | <h?></h?> |
標(biāo)題的對(duì)齊 | <h? align=left|center|right></h?> | |
區(qū)分 | <div></div> | |
區(qū)分的對(duì)齊 | <div align=left|right|center|justify></div> | |
引文區(qū)塊 | <blockquote></blockquote> | |
強(qiáng)調(diào) | 通常會(huì)以斜體顯示 | <em></em> |
特別強(qiáng)調(diào) | 通常會(huì)以加粗顯示 | <strong></strong> |
引文 | 通常會(huì)以斜體顯示 | <cite></cite> |
碼 | 顯示原始碼之用 | <code></code> |
樣本 | <samp></samp> | |
鍵盤輸入 | <kbd></kbd> | |
變數(shù) | <var></var> | |
定義 | 有些瀏覽器不提供 | <dfn></dfn> |
地址 | <address></address> | |
大字 | <big></big> | |
小字 | <small></small> | |
加粗 | <b></b> | |
斜體 | <I></I> | |
底線 | <u></u> | |
刪除線 | <s></s> | |
下標(biāo) | <sub></sub> | |
上標(biāo) | <sup></sup> | |
打字機(jī)體 | <tt></tt> | |
預(yù)定格式 | <pre></pre> | |
向中看齊 | 文字與圖片都可以 | <center></center> |
閃耀 | 有史以來最被嘲弄的標(biāo)簽 | <blink></blink> |
<style>
button{color:#000000;}
</style>
<button onclick=document.styleSheets[0].rules[0].style.color='red'>點(diǎn)擊按鈕直接修改style標(biāo)簽里button選擇符使按鈕改為 紅色</button>
方法一,用refresh
HTML 代碼片段如下:
<head>
<meta. http-equiv="refresh" content="3">
</head>
3表示刷新時(shí)間
方法二,使用setTimeout控制
<img src=/logo.gif>
<script>
function rl(){
document.location.reload()
}
setTimeout(rl,2000)
</SCRIPT>
<link rel="Shortcut Icon"href="favicon.icon"> IE地址欄前換成自己的圖標(biāo)
<link rel="Bookmark"href="favicon.icon"> 可以在收藏夾中顯示出你的圖標(biāo)
<inputstyle="ime-mode:disabled"> 關(guān)閉輸入法
<body oncontextmenu="window.event.returnValue=false" 將徹底屏蔽鼠標(biāo)右鍵
onselectstart="return false" 取消選取
onpaste="return false" 不準(zhǔn)粘貼
oncopy="return false;" 防止復(fù)制
oncut="return false;"> 防止剪切
<script language="JavaScript">
if (window == top)top.location.href = "frames.htm"; //frames.htm為框架網(wǎng)頁
</script>
<a href="" onclick="javascript:return del();">刪除</a>
<script>
function del() {
var msg = "您真的確定要?jiǎng)h除嗎?\n\n請(qǐng)確認(rèn)!";
if (confirm(msg)==true){
return true;
}else{
return false;}}
</script>
<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">
怎樣讓表單沒有凹凸感?
<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>
<body style="overflow:scroll;overflow-y:hidden"> //滾動(dòng)條豎條消失
<body style="overflow:scroll;overflow-x:hidden"> //滾動(dòng)條橫條消失
<body scroll="no"> //兩種滾動(dòng)條都消失
<form. name="form1"method="post" action="mailt****@***.com"enctype="text/plain">
<input type=submit>
</form>
window.opener.location.reload()
<body onload="top.resizeTo(300,200);">
<body onload="top.moveBy(300,200);"> //打開頁面的位置
body {background-image:url(logo.gif);
background-repeat:no-repeat;
background-position:center;
background-attachment: fixed}
<script>
function checkNum(str){return str.match(/\\D/) == null}
alert(checkNum("1232142141"))
alert(checkNum("123214214a1"))
</script>
document.body.clientWidth;
document.body.clientHeight;
if (/[^/x00-/xff]/g.test(s)) alert("含有漢字");
else alert("全是字符");
<textarea rows=1 name=s1 cols=27 onpropertychange="this.style.posHeight=this.scrollHeight">
</textarea>
<script. language=Javascript>
function cc(dd,dadd)
{
//可以加上錯(cuò)誤處理
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>
<script>
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>
<SCRIPT>
<Hide function killErrors(){return true;} window.onerror = killErrors;>
</SCRIPT>
<input onkeydown="if(event.keyCode==13)event.keyCode=9">
特殊符號(hào) | 命名實(shí)體 | 十進(jìn)制編碼 | 特殊符號(hào) | 命名實(shí)體 | 十進(jìn)制編碼 | 特殊符號(hào) | 命名實(shí)體 | 十進(jìn)制編碼 |
Α | Α | Α | Β | Β | Β | Γ | Γ | Γ |
Δ | Δ | Δ | Ε | Ε | Ε | Ζ | Ζ | Ζ |
Η | Η | Η | Θ | Θ | Θ | Ι | Ι | Ι |
Κ | Κ | Κ | Λ | Λ | Λ | Μ | Μ | Μ |
Ν | Ν | Ν | Ξ | Ξ | Ξ | Ο | Ο | Ο |
Π | Π | Π | Ρ | Ρ | Ρ | Σ | Σ | Σ |
Τ | Τ | Τ | Υ | Υ | Υ | Φ | Φ | Φ |
Χ | Χ | Χ | Ψ | Ψ | Ψ | Ω | Ω | Ω |
α | α | α | β | β | β | γ | γ | γ |
δ | δ | δ | ε | ε | ε | ζ | ζ | ζ |
η | η | η | θ | θ | θ | ι | ι | ι |
κ | κ | κ | λ | λ | λ | μ | μ | μ |
ν | ν | ν | ξ | ξ | ξ | ο | ο | ο |
π | π | π | ρ | ρ | ρ | ? | ς | ς |
σ | σ | σ | τ | τ | τ | υ | υ | υ |
φ | φ | φ | χ | χ | χ | ψ | ψ | ψ |
ω | ω | ω | ? | ϑ | ϑ | ? | ϒ | ϒ |
? | ϖ | ϖ | ? | • | • | … | … | … |
′ | ′ | ′ | ″ | ″ | ″ |  ̄ | ‾ | ‾ |
? | ⁄ | ⁄ | ? | ℘ | ℘ | ? | ℑ | ℑ |
? | ℜ | ℜ | ? | ™ | ™ | ? | ℵ | ℵ |
← | ← | ← | ↑ | ↑ | ↑ | → | → | → |
↓ | ↓ | ↓ | ? | ↔ | ↔ | ? | ↵ | ↵ |
? | ⇐ | ⇐ | ? | ⇑ | ⇑ | ? | ⇒ | ⇒ |
? | ⇓ | ⇓ | ? | ⇔ | ⇔ | ? | ∀ | ∀ |
? | ∂ | ∂ | ? | ∃ | ∃ | ? | ∅ | ∅ |
? | ∇ | ∇ | ∈ | ∈ | ∈ | ? | ∉ | ∉ |
? | ∋ | ∋ | ∏ | ∏ | ∏ | ∑ | ∑ | − |
? | − | − | ? | ∗ | ∗ | √ | √ | √ |
∝ | ∝ | ∝ | ∞ | ∞ | ∞ | ∠ | ∠ | ∠ |
∧ | ∧ | ⊥ | ∨ | ∨ | ⊦ | ∩ | ∩ | ∩ |
∪ | ∪ | ∪ | ∫ | ∫ | ∫ | ∴ | ∴ | ∴ |
~ | ∼ | ∼ | ? | ≅ | ≅ | ≈ | ≈ | ≅ |
≠ | ≠ | ≠ | ≡ | ≡ | ≡ | ≤ | ≤ | ≤ |
≥ | ≥ | ≥ | ? | ⊂ | ⊂ | ? | ⊃ | ⊃ |
? | ⊄ | ⊄ | ? | ⊆ | ⊆ | ? | ⊇ | ⊇ |
⊕ | ⊕ | ⊕ | ? | ⊗ | ⊗ | ⊥ | ⊥ | ⊥ |
? | ⋅ | ⋅ | ? | ⌈ | ⌈ | ? | ⌉ | ⌉ |
? | ⌊ | ⌊ | ? | ⌋ | ⌋ | ? | ◊ | ◊ |
? | ♠ | ♠ | ? | ♣ | ♣ | ? | ♥ | ♥ |
? | ♦ | ♦ | |   | ? | ¡ | ¡ | |
¢ | ¢ | ¢ | £ | £ | £ | ¤ | ¤ | ¤ |
¥ | ¥ | ¥ | | | ¦ | ¦ | § | § | § |
¨ | ¨ | ¨ | ? | © | © | a | ª | ª |
? | « | « | ? | ¬ | ¬ | - | ­ | ­ |
? | ® | ® | ˉ | ¯ | ¯ | ° | ° | ° |
± | ± | ± | 2 | ² | ² | 3 | ³ | ³ |
′ | ´ | ´ | μ | µ | µ | " | " | " |
< | < | < | > | > | > | ' | ' |
更多建議: