# 5/13(四) 每日任務 ### 第一題 請問以下的 HTML 裡面的 h1 是什麼顏色?(這題比較像在考選擇器) ``` HTML <a href="index.html" class="logo"> <h1 class="title1 title2">標題</h1> </a> ``` ```css= <!-- CSS --> a h1{ color:blue; } a.title1{ color: red; } .title2{ color: black; } ``` ### 第二題 請問以下的 HTML 裡面的 h1 是什麼顏色? ``` HTML <a href="index.html" class="logo"> <h1 class="title1 title2" style="color:green">標題</h1> </a> ``` ```css= <!-- CSS --> .title1{ color: red; } .title2{ color: black; } ``` ### 第三題 ``` HTML <a href="index.html" class="logo"> <h1 id="title" class="title1 title2" style="color:green;">標題</h1> </a> ``` ```css= <!-- CSS --> #title{ color: pink; } .title1{ color: red; } .title2{ color: black !important; } ```