Files
Nicholas Carrigan (he/him) 3da4be21bb chore: seed chinese traditional (#42005)
Seeds the chinese traditional files manually so we can deploy to
staging.
2021-05-05 22:43:49 +05:30

1.5 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
bad87fee1348bd9aedf0887a 用 h2 元素代表副標題 0 https://scrimba.com/p/pVMPUv/cE8Gqf3 18196 headline-with-the-h2-element

--description--

在接下來的幾節課裏,我們將會一步一步地製作一個展示貓咪圖片的 HTML5 app。

這節課中,我們將會爲頁面引入作爲第二級標題的 h2 元素。

這些元素用來告訴瀏覽器網站的結構是什麼樣子。 h1 元素通常被用作主標題,h2 元素通常被用作副標題, 還有 h3h4h5h6 元素,它們分別用作不同級別的標題。

--instructions--

在內容爲 "Hello World" 的 h1 元素下面創建一個 h2 元素,其內容爲 “CatPhotoApp”。

--hints--

應創建一個 h2 元素。

assert($('h2').length > 0);

h2 元素應該有結束標籤。

assert(
  code.match(/<\/h2>/g) &&
    code.match(/<\/h2>/g).length === code.match(/<h2>/g).length
);

h2 元素的內容應爲:CatPhotoApp

assert.isTrue(/cat(\s)?photo(\s)?app/gi.test($('h2').text()));

h1 元素的內容應爲:Hello World

assert.isTrue(/hello(\s)+world/gi.test($('h1').text()));

h1 元素應出現在 h2 元素之前。

assert(code.match(/<h1>\s*?.*?\s*?<\/h1>\s*<h2>\s*?.*?\s*?<\/h2>/gi));

--seed--

--seed-contents--

<h1>Hello World</h1>

--solutions--

<h1>Hello World</h1>
<h2>CatPhotoApp</h2>