File tree Expand file tree Collapse file tree 1 file changed +40
-1
lines changed
Expand file tree Collapse file tree 1 file changed +40
-1
lines changed Original file line number Diff line number Diff line change @@ -205,10 +205,49 @@ Web
205205
206206
207207
208- HTML
208+ HTML ** 超文本标记语言 **
209209 + 两个标记 . 和 .. 分表代表当前目录和上一层目录。
210210
211211 #### 定义列表` <dl> `
212212 + ` <dt> ` :列表的标题,这个标签是必须的
213213 + ` <dl> ` :列表的列表项,如果不需要它,可以不加
214214
215+ #### 内嵌框架` <iframe> `
216+ ** ` <iframe> ` ** 是 ** ` <body> ` ** 的子标记
217+
218+ ``` html
219+ <body >
220+
221+ <a href =" 文字页面.html" target =" myframe" >默认显示文字页面</a ><br >
222+ <a href =" 图片页面.html" target =" myframe" >点击进入图片页面</a ><br >
223+ <a href =" 表格页面.html" target =" myframe" >点击进入表格页面</a ><br >
224+
225+ <iframe src =" 文字页面.html" width =" 400" height =" 400" name =" myframe" ></iframe >
226+ <br >
227+ 嘿嘿
228+ </body >
229+ ```
230+
231+ #### H5新增语义标签
232+
233+ + ` <section> ` 表示区块
234+ + ` <article> ` 表示文章。 文章、评论、帖子、博客
235+ + ` <header> ` 页眉
236+ + ` <footer> ` 页脚
237+ + ` <nav> ` 导航
238+ + ` <aside> ` 侧边栏
239+ + ` <figure> ` 媒介内容分组
240+ + ` <mark> ` 标记
241+ + ` <progress> ` 进度
242+ + ` <time> ` 日期
243+
244+
245+ #### 拖拽元素
246+
247+ 页面设置了` draggable = 'true' ` 属性元素
248+
249+ ``` html
250+ <div class =" box" draggable =" true" ></div >
251+ ```
252+
253+
You can’t perform that action at this time.
0 commit comments