1.實驗:HTML是網頁骨架,CCS是網頁裝修
2.IDE:VSCODE?
3.記錄:?
style
?
?
4.代碼:
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>CSS裝修HTML</title><!-- 整體背景顏色 --><style> *{background-color:whitesmoke;} </style> <!-- 外部鏈接入 --><link rel="stylesheet" href="./css/style.css">
</head>
<body><!-- 給所有段落設置為這種樣式 --><style> p{color: blue;font-style: italic;font-size: 35px;} </style> <!-- 給所有二級標題設置為這種樣式 --><style> h2{color: green;font-style: oblique;}</style><!-- 給當前文本設置為這種樣式 --><p style="color: red;font-size: 16px;">字體顏色紅色,大小為16px</p> <p>字體顏色藍色,字體風格意大利,字體大小35px</p><h2>二級標題</h2><h3>三級標題</h3><!-- 設置行距 --><p style="line-height: 50px; font-size: 15px;">這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本這是一段長文本</p>
</body>
</html>