我是按照W3school上面的教程學(xué)習(xí)的,個(gè)人覺(jué)得教程很不錯(cuò),每節(jié)都有小練習(xí),加油!都是自己敲的代碼,有的書(shū)上反對(duì)自己寫(xiě)代碼,但是我覺(jué)得因?yàn)闆](méi)有基礎(chǔ),自己寫(xiě)還是有好處的,需要了解的朋友可以參考下
我是按照W3school上面的教程學(xué)習(xí)的,個(gè)人覺(jué)得教程很不錯(cuò),每節(jié)都有小練習(xí),加油!
都是自己敲的代碼,有的書(shū)上反對(duì)自己寫(xiě)代碼,但是我覺(jué)得因?yàn)闆](méi)有基礎(chǔ),自己寫(xiě)寫(xiě)還是有好處的,個(gè)人意見(jiàn)不同吧。。
練習(xí)1:
代碼如下:
<html>
<body bgcolor="yellow">
<h1 align="center">This is heading 1</h1>
<h2 align = "left">This is heading 1</h2>
<h3 align = "right">This is heading 1</h3>
<h4>This is heading 1</h4>
<h5>This is heading 1</h5>
<h6>This is heading 1</h6>
<!--<h7>This is heading 1</h7>-->
<!--再來(lái)個(gè)注釋?zhuān)囈幌滦Ч?-->
<p>This is the first paragraph
</p>
<hr />這是鏈接區(qū)域
<a >This is baidu link</a>
<br/>
<a >This is w3school link</a>
<hr />這是圖片區(qū)域
<img src = "http://img.t.ifeng.com/201010/22/12/96x96_1758293e995c.jpg" />
<hr />這是表格區(qū)域
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<hr />換行功能
<p>這句話(huà)
在這里換行
</p>
<p>
這個(gè)段落 有很多
空行
或者空格
但是瀏覽器自動(dòng) 忽略
了它們
</p>
<pre>
這是預(yù)格式文本
可以顯示空行
和空格
還有代碼
</pre>
<pre>
while(true)
{
sum=a+b;
return sum;
cout<<sum;
}
</pre>
</body>
</html>
練習(xí)2:
代碼如下:
<html>
<body>
<b>This text is bold</b>
<strong>This text is strong</strong>
<big>This text is big</big>
<small>This text is small</small>
<em>This text is emphasized</em>
<i>This text is italic</i>
This text contains<sub>下標(biāo)</sub>
This text contains<sup>上標(biāo)</sup>
<hr />
<pre>
這是預(yù)格式文本
哈哈
可以輸出空格
空行吧
</pre>
<code>
while(true)
{
computer code;
}
</code>
<kbd>keyboard input</kbd>
<samp>Sample text</samp>
<var>Computer variable</var>
<hr />
地址練習(xí):
<address>
天津市SHUDIP
FERT R
ABC(收)
郵編:123456
</address>
<hr />縮寫(xiě)練習(xí)
<abbr title = "etcetera">etc.</abbr>
<acronym title = "World Wide Web">www.</acronym>
<hr />文字方向練習(xí)//這里不支持那個(gè)功能吧,本應(yīng)該是從右向左輸出文字
<bdo dir="rt1">Here is some text</bdo>
<hr />塊的引用練習(xí)
這是長(zhǎng)引用
<blockquote>這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用
這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用。這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用
這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用.這是長(zhǎng)引用</blockquote>
這是短引用
<q>短引用哇,短引用</q>
<hr />刪除或添加文字效果練習(xí)
<p>一打有<del>二十</del><ins>十二</ins>個(gè)哦</p>
</body>
</html>