何謂 CSS ?
CSS 全名為「Cascading Style Sheets」的縮寫,Cascading 是連鎖、串接、連接之意。
Style 則是風格、作風、體裁、式樣之意。
Sheets 則是片、一頁紙、表、單的意思。
因此 CSS 的中文意思大略是:「串接樣式表」。

CSS 存放在 html 裡面的哪個位置?
方法一:
將指令放在 html 標籤內。
範例:
哈嘍~

方法二:
將指令放在 <style type="text/css"> </style>內。
而 <style type="text/css"></style> 通常是夾在 </title> 與 </head> 之間。
範例:
<html>
<head>
<title>測試 CSS</title>
    <style type="text/css">
         #x{
             color:red;
         }
    </style>
</head>
<body>
<font id="x">哈嘍~</font>
</body>
</html>

方法三、
將 CSS 語法存成檔案,讓 HTML 檔案叫用。
將下列語法存成檔案 (隨意命名,但最好附屬名為 CSS 供辨別),檔名為 test.css

#x{
   color:red;
}

並在 html 檔案中的 <head> 與 <title> 之間或 </title> 與 </head> 加入下列指令:
<link rel="stylesheet" href="test.css" type="text/css">