Notes on learning css

虚帅 Reno
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>css</title>
<style>
h2{
color: darkcyan;
font-size:40px;
}
img{
width:200px ;
}
</style>
</head>
<body>
<!-- css 编写位置 1-行内样式 -->
<h1 style="color: cadetblue;font-size: 60px;">深圳今天回温了</h1>
<!-- css 编写位置 1-内部样式 -->
<h2>前两天深圳降温了</h2>
<img src="./向你敬礼.jpg" alt="向你敬礼">
<!-- css 编写位置 1-外部样式 -->
</body>
</html>
  • Title: Notes on learning css
  • Author: 虚帅
  • Created at : 2025-11-21 00:00:00
  • Updated at : 2025-12-09 13:11:23
  • Link: https://liujasmyn411.github.io/2025/11/21/css/
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments
On this page
Notes on learning css