時間:2023-09-26 07:12:01 | 來源:網(wǎng)站運營
時間:2023-09-26 07:12:01 來源:網(wǎng)站運營
HTML語言基礎(chǔ):<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>頁面的標(biāo)題</title></head><body> </body></html>
2、meta 元素<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>關(guān)于標(biāo)題標(biāo)簽</title></head><body> <h1>一級標(biāo)簽</h1> <h2>二級標(biāo)簽</h2> <h3>三級標(biāo)簽</h3> <h4>四級標(biāo)簽 與默認(rèn)文本大小基本相同</h4> <h5>五級標(biāo)簽</h5> <h6>六級標(biāo)簽</h6></body></html>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>關(guān)于語義標(biāo)簽</title></head><body> <p>你好</p> <p><strong>你好</strong></p> <p><em>你好</em></p> <p><del>你好</del></p> <p><ins>你好</ins></p> <p>HTML 語言是一門 <ins>""</ins> 的語言</p></body></html>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>關(guān)于段落</title></head><body><!-- 所有的 空格包括 /t 還有 /n;最終在瀏覽展示中都被視為一個空白 --><p>Click Duplicate The Duplicate button on the toolbar. A new template item is added to the same group as the original, and selected.</p><p>Click Duplicate The Duplicate button on the toolbar. A new template item is added to the same group as the original, and selected.</p></body></html>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>關(guān)于段落</title></head><body><!-- 所有的 空格包括 /t 還有 /n;最終在瀏覽展示中都被視為一個空白 --><p>Click Duplicate The Duplicate<br> button<br> on the toolbar. A new template item is added to the same group as the original, and selected.</p><p>Click Duplicate The Duplicate button on the toolbar. A new template item is added to the same group as the original, and selected.</p></body></html>
<!DOCTYPE html><html> <head> <title>你好世界</title> </head> <body> <h1>我去春游</h1> <p>我玩得<em>很開心</em></p> <p>明天接著去!</p> <hr> </body></html>
<h1>有序列表</h1><ol> <li>cc</li> <li><a href="https://www.baidu.com/">百度</a></li> <li><img src="cc.jpg" height="120"></li></ol>
<h1>無序列表</h1><ul> <li>cc</li> <li><a href="https://www.baidu.com/">百度</a></li> <li><img src=".jpg" height="120"></li></ul>
<h1>自定義列表</h1><dl> <dt>標(biāo)題</dt> <dd>項1</dd> <dd>項2</dd> <dd>項3</dd></dl>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>關(guān)于 div 和 span</title></head><body> <!-- 每個 div 都是獨立的,結(jié)束后必須跟換行 --> <div>111</div><div>222</div> <!-- span 不換行 --> <span>AAA</span> <span>BBB</span> <span>CCC</span></body></html>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>關(guān)于圖片</title></head><body> <!-- 瀏覽器取到的資源還是原圖資源,只是最終顯示的時候縮放 --> <img src="cc.jpg" height="300" alt="這是一個頭像"></body></html>
<a href="target.html">本地的一個資源頁</a><a href="https://www.baidu.com/">在當(dāng)前頁打開百度</a>
關(guān)鍵詞:基礎(chǔ),語言
微信公眾號
版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。