diff --git a/docs/notes/programming/web/basic-syntax/html-tags-attributes.md b/docs/notes/programming/web/basic-syntax/html-tags-attributes.md
index 27f9050..91ed3e3 100644
--- a/docs/notes/programming/web/basic-syntax/html-tags-attributes.md
+++ b/docs/notes/programming/web/basic-syntax/html-tags-attributes.md
@@ -15,30 +15,30 @@ permalink: /programming/web/basic-syntax/html-tags-attributes/
### 认识div标签
-**什么是
?**
+**什么是 `
`?**
-
是 "division"(分区)的缩写,可以理解为网页中的"容器"或"盒子"。
+`
` 是 "division"(分区)的缩写,可以理解为网页中的"容器"或"盒子"。
想象一下搬家时的纸箱:
* 网页 = 整个房间
-*
= 一个个纸箱
+* `
` = 一个个纸箱
* 箱子里 = 可以放各种物品(文字、图片、按钮等)
-###
的基本特点
+### `
` 的基本特点
1. 块级元素
-
是块级元素,这意味着:
+`
` 是块级元素,这意味着:
* 默认会占据整行的宽度
* 前后会自动换行
-* 就像段落一样,每个
都会从新的一行开始
+* 就像段落一样,每个`
`都会从新的一行开始
-**
本身没有特定含义,它只是用来分组和布局。**
+**`
` 本身没有特定含义,它只是用来分组和布局。**
-### 为什么要使用
?
+### 为什么要使用 `
`?
-没有
的情况:
+没有`
`的情况:
```html title='index.html'
@@ -58,7 +58,7 @@ permalink: /programming/web/basic-syntax/html-tags-attributes/
所有元素都堆在一起,很难分别控制样式。
-使用