HTML5 and CSS: 01-10

簡單的 html 元素介紹、css 選擇器

01 - Say Hello to HTML Element

<h1>Hello World</h1>

02 - Headline with the h2 Element

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

03 - Inform with the Paragraph Element

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

04 - Uncomment HTML

05 - Comment out HTML

<!-- <h1>Hello World</h1> -->
<h2>CatPhotoApp</h2>
<!-- <p>Hello Paragraph</p> -->

06 - Fill in the Blank with Placeholder Text

07 - Delete HTML Elements

  • 空間太少,刪個元素

08 - Change the Color of Text

09 - Use CSS Selectors to Style Elements

  • css properties

  • Cascading Style Sheets 層疊樣式表

  • inline style 內聯樣式

  • selecter 選擇器

  • element 元素

  • tag 標籤 <style></style>

  • curly braces 花括號 { }

  • semicolon 分號 ;

10 - Use a CSS Class to Style an Element

  • class 類

Last updated

Was this helpful?