After following, you can keep track of his dynamic information in a timely manner
Courses in the relevant section:HTML+CSS An easy introduction to HTML
頭部?jī)?nèi)容 <head></head> 主體內(nèi)容 <body></body>
2016-11-260個(gè)贊
Courses in the relevant section:HTML+CSS HTML infrastructure for easy entry
<html> <head> <title></title> </head> <body> </body> </html>
2016-11-260個(gè)贊
Courses in the relevant section:Introduction to HTML Basics Tutorial
HTML是一種規(guī)范,是一種標(biāo)準(zhǔn),編寫網(wǎng)頁(yè)的一種標(biāo)準(zhǔn)。 超文本:就是網(wǎng)頁(yè)上不光有文本,還有圖片、音樂(lè)、視頻等。 標(biāo)記:是一種記號(hào),是一種標(biāo)志。如:紅綠燈 語(yǔ)言:這里的“語(yǔ)言”就是代碼,跟所謂“程序語(yǔ)言”一點(diǎn)關(guān)系都沒(méi)有。
2016-11-250個(gè)贊
Courses in the relevant section:HTML basic tutorial file structure
<!DOCTYPE HTML><!--聲明--> <html> <head> <title>標(biāo)題</title> </head> <body> 內(nèi)容部分 </body> </html>
2016-11-250個(gè)贊
Courses in the relevant section:HTML basic tutorial tag format
雙邊標(biāo)簽(開始標(biāo)簽和結(jié)束標(biāo)簽)例如:<p>內(nèi)容</p> 單邊標(biāo)簽 只有開始標(biāo)簽,而沒(méi)結(jié)束標(biāo)簽 例如:<br>、<img>
2016-11-250個(gè)贊
Courses in the relevant section:HTML basic tutorial tag writing specifications
HTML標(biāo)記不區(qū)分大小寫。如:<font>、<Font>、<fOnt> HTML標(biāo)記屬性可有可無(wú)。有的標(biāo)記是沒(méi)有屬性的,如:<html>、<head>、<title>等 雙邊標(biāo)簽的內(nèi)容在開始和結(jié)束標(biāo)簽之間,單邊標(biāo)記沒(méi)有內(nèi)容 HTML標(biāo)記可以相互嵌套,但一定注意是順序嵌套,外層套內(nèi)層,一層套一層。例如<div><p></p></div>
2016-11-250個(gè)贊
Courses in the relevant section:Editor selection
Editplus、、Notepad+。也有功能強(qiáng)大的Dreamweaver、Zend Studio,不建議使用Dreamweaver,編程需要多寫才能記??!
2016-11-250個(gè)贊
Courses in the relevant section:The overall composition of the page in HTML basic tutorial
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">設(shè)置編碼 我們可以簡(jiǎn)寫 <meta charset="utf-8">
2016-11-251個(gè)贊
Courses in the relevant section:HTML basic tutorial <body> tag
bgColor:網(wǎng)頁(yè)背景色。如: background:網(wǎng)頁(yè)背景圖片地址。 <table border="1"> <tr> <td width="50" height="50" bgColor="#88cc66"></td> <td width="50" height="50" background="http://img15.3lian.com/2015/f1/7/d/48.jpg"></td> </tr> </table>
2016-11-250個(gè)贊
Courses in the relevant section:HTML basic tutorial text modification tags
<b></b>:加粗bold。如:<b>HTML文件</b> <i></i>:斜體italic。如:<i>HTML文本</i> <u></u>:下劃線underline。如:<u>HTML文本</u> <s></s>:刪除線strike。如:<s>刪除線</s> <sup></sup>上標(biāo)。 <sub></sub>下標(biāo)。 <font></font>字體標(biāo)記
2016-11-250個(gè)贊
Courses in the relevant section:HTML Basics Tutorial: Typesetting Tags
size:水平線的粗細(xì),單位一般為px。 color:水平線的顏色 width:水平線的寬度。 noshade:去掉水平線的陰影(在HTML中,noshade是沒(méi)有值的屬性)。
2016-11-250個(gè)贊
Courses in the relevant section:HTML Basics Tutorial: <strong> and <em>
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> </head> <body> <strong>明月幾時(shí)有,把酒問(wèn)青天</strong><br> <em>但愿人長(zhǎng)久,千里共嬋娟</em> </body> </html>
2016-11-250個(gè)贊
Courses in the relevant section:HTML basic tutorial <span> tag
<em>和<strong>標(biāo)簽是為了強(qiáng)調(diào)一段話中的關(guān)鍵字時(shí)使用,它們的語(yǔ)義是強(qiáng)調(diào)。 <span>標(biāo)簽是沒(méi)有語(yǔ)義的,它的作用就是為了設(shè)置單獨(dú)的樣式用的。
2016-11-250個(gè)贊
Courses in the relevant section:HTML Basics Tutorial: HTML Character Entities
<:< >:> &:& ¥:¥ ×:$times; ÷:$divide;
2016-11-250個(gè)贊
Courses in the relevant section:HTML basic tutorial HTML list
<ul > <li>內(nèi)容1</li> <li>內(nèi)容2</li> <li>內(nèi)容3</li> </ul>
2016-11-250個(gè)贊