01 - Html

一.标签


01- 段落标签 <p></p>
02- 标题标签<h1></h1>到<h6></h6>
03- 加粗标签 strong></strong>
04- 斜体标签 <em></em>
05- 删除标签 <del></del>
06- 结构化标签<div></div> <span></span>
07- 图片标签 <img src="地址'">
08- 超链接 <a href="www.xx.com">点我直达</a>
09- 下拉框 <select> <option>lalala</option> </select>
10- 空格 &nbsp;
11- 换行 <br>
12- 水平线 <hr>

二.列表

01- 有序列表 <ol> <li></li> </ol>
02- 无序列表 <ul> <li> </li> </ul>

三.表单

01- 表单 <from> <input> <input> <from>
02- type:txt password 按钮 button submit 单选 radio
03- action:提交 action=""
04- radio: <input type="radio" name="select">(name 一样)

四.表格

01- 表格<table> </table>
<thead> </thead>
<tr> </tr>
<td> </td>

发布了25 篇原创文章 · 获赞 0 · 访问量 230

猜你喜欢

转载自blog.csdn.net/weixin_42746553/article/details/104321616