首頁  >  文章  >  web前端  >  web前端筆試題庫之HTML篇

web前端筆試題庫之HTML篇

青灯夜游
青灯夜游轉載
2022-04-21 11:56:404110瀏覽

總結了一些web前端面試(筆試)題分享給大家,這篇文章就先給大家分享HTML部分的筆試題(附答案),大家可以自己做,看看能答對幾個!

web前端筆試題庫之HTML篇

相關推薦:《web前端筆試題庫之CSS篇

Q1:aa983b9eb8086376f1f6481364a02e5a 是正確的HTML5標籤嗎?

A:是。

aa983b9eb8086376f1f6481364a02e5a 標籤規定用於表單的金鑰對產生器欄位。當提交表單時,私鑰儲存在本地,公鑰發送到伺服器。是HTML5 標籤。

Q2:71af07a0e88a1ac1ff73f855702ac153 標籤是否可以改變文字方向?

A:可以。

71af07a0e88a1ac1ff73f855702ac153標籤覆寫預設的文字方向。

<bdo dir="rtl">Here is some text</bdo>

Q3:下列HTML程式碼是否正確?

<figure>
    <img src="myimage.jpg" alt="My image">
    <figcaption>
        <p>This is my self portrait.</p>
    </figcaption>
</figure>

A:正確

24203f2f45e6606542ba09fd2181843a 標籤規定獨立的串流內容(圖像、圖表、照片、程式碼等等)。 figure 元素的內容應該與主內容相關,但如果被刪除,則不應對文件流產生影響。使用614eb9dc63b3fb809437a716aa228d24元素為figure新增標題(caption)。

Q4:在哪種情況下應該使用small標籤?當你想在h1 標題後創建副標題?還是當在footer裡面增加版權資訊?

A:small標籤一般使用場景是在版權資訊和法律文字裡使用,也可以在標題裡使用標註附加資訊(bootstrap中可見),但不可以用來創建副標題。

The HTML Small Element (d015d241ae6d34c34210679b5204fe85) makes the text font size one size smaller (for example, from large to medium, or from small to x-small) down to the browser's minimum font size. In HTML5, this element is repurposed to represent side-comments and small print, including copyright and legal text, independent of its styled presentation.

Q5:在一個結構良好的web網頁裡,多個h1標籤會不利於SEO嗎?

A:不影響。

According to Matt Cutts (lead of Google's webspam team and the de facto expert on these things), using multiple 4a249f0d628e2318394fd9b75b4636b1 tags is fine, as long as you're not abusing it (like sticking your whole page in an 4a249f0d628e2318394fd9b75b4636b1 and using CSS to style it back to normal size). That would likely have no effect, and might trigger a penalty, as it looks spammy.

#ul#ultio you#pulti headings and it would be natural to use multiple 4a249f0d628e2318394fd9b75b4636b1's, then go for it.

摘自:http://www.quora.com/Does-using-multiple-h1-tags-on -a-page-affect-search-engine-rankings

#Q6:如果你有一個搜尋結果頁面,你想要高亮搜尋的關鍵字。什麼HTML 標籤可以使用?

A:

f920514e6447cf1d171079d1371f007f 標籤表現高亮文字。

The HTML

f920514e6447cf1d171079d1371f007f Element represents highlighted text, i.e., a run of text marked for reference purpose, due to its relevance in a particular context. For example it can example it can be used in a page showing search results to highlight every instance of the searched for word.

Q7:下列程式碼中scope 屬性是做什麼的?

<article>
    <h1>Hello World</h1>
    <style scoped>
        p {
            color: #FF0;
        }
    </style>
    <p>This is my text</p>
</article>
<article>
    <h1>This is awesome</h1>
    <p>I am some other text</p>
</article>

A:scoped 屬性是一個布林屬性。如果使用該屬性,則樣式僅套用到 style 元素的父元素及其子元素。

Q8:HTML5 支援區塊級超連結嗎?例如:

<article>
    <a href="#">
        <h1>Hello</h1>
        <p>I am some text</p>
    </a>
</article>

A:支援。

HTML5中3499910bf9dac5ae3c52d5ede7383485 元素表現為超鏈接,支援任何行內元素和區塊級元素。

Q9:下列的HTML程式碼載入時會觸發新的HTTP請求嗎?

<img src="mypic.jpg" style="visibility: hidden" alt="My picture">

A:會哇

#Q10:下列的HTML程式碼載入時會觸發新的HTTP請求嗎?

<div style="display: none;">
    <img src="mypic.jpg" alt="My photo">
</div>

A:會!

Q11:main1.css一定會在alert('Hello world')被載入和編譯嗎?##

<head>
    <link href="main1.css" rel="stylesheet">
    <script>
        alert(&#39;Hello World&#39;);
    </script>
</head>
A:是!

Q12:在main2.css取得前main1一定必須下載解析嗎?

<head>
    <link href="main1.css" rel="stylesheet">
    <link href="main2.css" rel="stylesheet">
</head>
A:no!

#Q13:在Paragraph 1載入後main2.css才會被載入編譯嗎?

<head>
    <link href="main1.css" rel="stylesheet">
</head>
<body>
    <p>Paragraph 1</p>
    <p>Paragraph 2</p>
    <link href="main2.css" rel="stylesheet">
</body>
A:yes!

#

【相關推薦:html影片教學web前端

以上是web前端筆試題庫之HTML篇的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:github.io。如有侵權,請聯絡admin@php.cn刪除