CSS 內部樣式表(Internal style sheet)
CSS 內部樣式表(Internal style sheet):
在<head>...</head>
間加入<style>
標籤
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p{
color:blue;
font-size: 60px;
background-color: black;
}
h1{
color:red;
}
</style>
<!-- 以上style標籤中所代表為:所有p標籤中,字體為藍色;大小60;字體背景顏色為黑色
h1標籤中字體為紅色 -->
</head>
<body>
<h1>標題</h1>
<p>測試文字,測試文字</p>
<p>測試文字,測試文字</p>
<p>測試文字,測試文字</p>