39. 關於 HTML 命令描述,下列何者錯誤?
(A)顯示圖形檔:< img src=a1.gif>
(B)超連結:< link href=taipei.html>Go to Taipei</link>
(C)顯示影音檔:< video src=a1.mp4 width=800 height=500> </video>
(D)顯示內部框架網頁檔:< iframe src=a1.htm width=100 height=500> </iframe>
答案:登入後查看
統計: A(42), B(238), C(68), D(53), E(0) #1996465
統計: A(42), B(238), C(68), D(53), E(0) #1996465
詳解 (共 4 筆)
#3943506
HTML <a> Tag
The <a> tag defines a hyperlink, which is used to link from one page to another.
Create a link to W3Schools.com: <a href="https://www.w3schools.com">Visit W3Schools.com!</a>
https://www.w3schools.com/tags/tag_a.asp
HTML <link> Tag
Link to an external style sheet:
<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>
1
0