工作生活

html学习笔记

2019-07-02  本文已影响0人  goasleep

列举一些常用的html标签

基本组件

文本内容

段落标签 <p>
标题标签 <h1>.<h2> ,,,, <h6>
分割线 <hr>
有序标签 <ol> 每一子项用<li>标签表示
无序标签 <ul> 每一子项用<li>标签表示
列表标签 <dl> 子项用<dt>表示标题,<dd>表示标题下的内容
段落引用 <blockquote>
内容倾斜引用 <cite>
双引号引用 <q>
预格式化 <pre> #能够保留文本的格式
加粗粗体 <strong>
强调标签 <em>
斜体 <i>
下划线 <u> <ins>
删除线 <s> <del>
加粗 <b>
上标 <sup>
下标 <sub>
替换字符
&amp; #&
&nbsp; #空格
&lt; #<
&gt: #>
&copy; #圆圈C
&yen; #¥

多媒体标签

图片 <img>
视频 <video>
音频 <andio>
嵌入标签 <iframe>

定义表格 <table>
表格页眉 <thead>
表格主体 <tbody>
表格一行 <tr>
表格表头 <th>
单元格 <td>
表格标题 <caption>
表格分组 <colgroup>
嵌套方式:table定义表格,子层嵌套thead和tbody,在页眉和主体内部分别嵌套表格的一行tr,最内层是表格的单元格td

表单内容

单行文本框  <input type='text'>
密码输入  <input type='password'>
多行文本框  <textarea>
单选按钮 <input type='radio'>
多选按钮 <input type="checkbox">
下来单选 <select>  子项用<option>
下拉多选 <select multiple>
文件选择 <input type='file'>
时间和日期 <input type="date">/<input type="datetime-local">/<input type="month">/<input type="week">/<input type="time">
上一篇下一篇

猜你喜欢

热点阅读