Worksheetsw02-HTML語言-2
Total questions: 10
Worksheet time: 5mins
網頁使用16進位顏色碼。
請問下面HTML碼在瀏覽器中,文字會呈現何種顏色?
<font color=#0000FF>紅包裡面只有1000元</font>
白色
紅色
綠色
藍色
網頁使用16進位顏色碼。
請問下面HTML碼在瀏覽器中,文字會呈現何種顏色?
<font color=#00ff00>紅包裡面只有1000元</font>
白色
紅色
綠色
藍色
如圖,想用右上角的顏色的橫線,
指令是?
<hr color=109>
<hr color=#6dd0cd>
<hrcolor=#6dd0cd>
<hr color=208>
<img>是插入圖片指令,若有圖片url為https://127.0.0.1/good.jpg
且希望圖片的寬度限制為100像素,則此圖片指令為?
<img src="good.jpg width=100">
<img src="https://127.0.0.1/good.jpg width=100">
<img src="https://127.0.0.1/good.jpg" width="100">
<img=src"https://127.0.0.1/good.jpg width=100">
<a href="https://liar.com.tw"></a>購買習維尼
<a href="https://liar.com.tw">購買習維尼</a>
<a href="https://liar.com.tw" 購買習維尼></a>
<a URL="https://liar.com.tw">購買習維尼</a>
若想讓圖片<img src="URL">有超連結,可以連至 https://tw.yahoo.com
則指令為?
<a href="https://tw.yahoo.com"><img src="URL"></a>
<img src="URL">
https://tw.yahoo.com.tw
<img src="URL" href="https://tw.yahoo.com">
<img src="URL"><a https://tw.yahoo.com></a>
如圖,若想在d.htm作超連結,連至e.htm,且使用相對路徑法,
其寫法為?
<a href="../coffee/2024/jan/e.htm"></a>
<a href="2024/jan/e.htm"></a>
<a href="coffee/2024/jan/e.htm"></a>
<a href="../2024/jan/e.htm"></a>
表格用的指令是?
<table><li><td>
<table><br><td>
<table><tr><td>
有表格指令如下,
<table border=1>
<tr><td>1</td> <td>2</td> <td>3</td> </tr><tr> <td>4</td></tr><tr> <td>5</td> <td>6</td></tr>
</table>
表格會變成?
使用colspan或rowspan可以進行領域展開,請問下面指令產生的表格,何者正確?
<table border=1>
<tr><td>1</td> <td>2</td> <td>3</td> </tr>
<tr> <td colspan=3>4</td></tr>
<tr> <td colspan=2>5</td> <td>6</td></tr>
</table>
