Skip to content

Commit d210ebd

Browse files
author
爱吃抹茶不吃茶
committed
feat(docs):update
1 parent a085309 commit d210ebd

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

docs/.vuepress/config/sidebar/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010

1111
module.exports = {
12-
"/read-books": require("./read-books-content")
12+
"/read-books": require('../../../read-books/sidebar_content')
1313
}

docs/front-end/base-begin/html.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,27 @@
88
-->
99

1010
## html相关
11+
12+
HTML的全称为超文本标记语言,是一种标记语言。它包括一系列标签.通过这些标签可以将网络上的文档格式统一,使分散的Internet资源连接为一个逻辑整体。HTML文本是由HTML命令组成的描述性文本,HTML命令可以说明文字,图形、动画、声音、表格、链接等。
13+
超文本是一种组织信息的方式,它通过超级链接方法将文本中的文字、图表与其他信息媒体相关联。这些相互关联的信息媒体可能在同一文本中,也可能是其他文件,或是地理位置相距遥远的某台计算机上的文件。这种组织信息方式将分布在不同位置的信息资源用随机方式进行连接,为人们查找,检索信息提供方便 [百度百科](https://baike.baidu.com/item/HTML/97049)
14+
15+
16+
17+
#### 标题
18+
19+
HTML 标题(Heading)是通过 `<h1> - <h6>` 等标签进行定义的。
20+
21+
#### 段落
22+
23+
HTML 段落是通过 `<p>` 标签进行定义的。
24+
25+
#### 链接
26+
HTML 链接是通过 `<a>` 标签进行定义的。
27+
28+
#### 图像
29+
HTML 图像是通过 <img> 标签进行定义的。
30+
31+
32+
### 元素
33+
34+
`<p>` 元素

docs/read-books/sidebar_content.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* @LastEditTime: 2022-04-10 16:37:52
88
*/
99

10-
1110
module.exports=[
1211
{
1312
text: 'Foo',

0 commit comments

Comments
 (0)