
批改狀態(tài):合格
老師批語:
<h1>這是一個(gè)h1標(biāo)題</h1>
<h2>這是一個(gè)h2標(biāo)題</h2>
<p>這是p標(biāo)簽段落</p>
<gral sex="nv" sw="80,90,100" height="170" weight="200">女朋友</gral>
<!-- html中的所有內(nèi)容,如果想要添加到html文檔中,就必須要使用一個(gè)標(biāo)簽 -->
<!-- js代碼必須寫到一個(gè)script標(biāo)簽中 -->
<script>
const SITE = "Hello world!";
</script>
<!-- 標(biāo)題標(biāo)簽:除了設(shè)置文檔標(biāo)題之外,還可以用來劃分頁面結(jié)構(gòu)的 -->
<h1>hello world</h1>
<h2>hello world</h2>
<h3>hello world</h3>
<!-- 內(nèi)容標(biāo)簽<p></p> -->
<p>程序員界有一句話:每一個(gè)程序員都應(yīng)該擁有一臺(tái)MacBook pro</p>
<!-- a標(biāo)簽當(dāng)前頁面跳轉(zhuǎn) -->
<a href="http://ipnx.cn/">php中文網(wǎng)</a>
<!-- a標(biāo)簽新窗口新頁面跳轉(zhuǎn) -->
<a href="http://ipnx.cn/" target="_blank">php中文網(wǎng)</a>
<!-- 點(diǎn)擊a標(biāo)簽在iframe訪問頁面 -->
<a href="https://www.baidu.com" target="baidu">打開百度</a>
<iframe srcdoc="<em>點(diǎn)擊上面打開百度</em>" name="baidu" width="400"></iframe>
使用iframe時(shí),需要注意a標(biāo)簽的target值需要跟iframe內(nèi)的name屬性值相等
<!-- 通過錨點(diǎn)跳轉(zhuǎn)到底部 -->
<a href="#footer">點(diǎn)我跳轉(zhuǎn)到底部</a>
<div id="footer" style="margin-top: 1000px">我是底部</div>
<a href="#">回到頂部</a>
<!-- 通過src打開一張網(wǎng)絡(luò)圖片地址 -->
<img src="https://img.php.cn/upload/course/000/000/001/5d240e769553b901.jpg" />
<!-- 圖片設(shè)置大小的時(shí)候只需要設(shè)置一個(gè)如寬度,或高度,另一個(gè)會(huì)等比縮放 -->
<img src="https://img.php.cn/upload/course/000/000/001/5d240e769553b901.jpg" width="200" />
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號