File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 99
1010
1111module . exports = {
12- "/read-books" : require ( "./ read-books-content" )
12+ "/read-books" : require ( '../../../ read-books/sidebar_content' )
1313}
Original file line number Diff line number Diff line change 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> ` 元素
Original file line number Diff line number Diff line change 77 * @LastEditTime : 2022-04-10 16:37:52
88 */
99
10-
1110module . exports = [
1211 {
1312 text : 'Foo' ,
You can’t perform that action at this time.
0 commit comments