Day43-367 : Goal

Day43-368: Indrodution to CSS

Day43-369: Inline CSS

Day43-370: A Quick Note about the Next Lesson

Day43-371: Internal CSS

  1. 在head tag裡加上style tag
  2. 在style tag的範圍內,加上要改變的tag,如:body , hr..
  3. 在{ }內加上要改變的樣式. key: value;(記得結尾要加分號)
<head>
	<style>
		body{ 
				background-color: green;
		}
		hr{ 
				background-color: green;
		}
		
	<style>
</head>