标签:菜单 链接 strong 哈哈 圆形 inpu https text 单选
无序列表
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
有序列表
<ol start="4" type="a">
有序列表 从第四个开始 type 可选值a A i I 1
<li><a href="https://.........">heihei</a></li>
加以链接
<li><em>heihei</em></li>
变倾斜
<li><strong>heihei</strong></li>
加粗
<li>heihei</li>
<li>heihei</li>
</ol>
表格
<table border="1px">
<tr>横
<td width="100px">班级</td>
定义单元格宽度
<td>学号</td>
<td>姓名</td>
</tr>
<td colspan="2">电商151</td>
横着合并两个单元格
<td rowspan="2">电商151</td>
竖着合并两个单元格
输入框 <input type="text">
密码框 <input type="password">隐藏输入内容
单选框<input type="radio" name="1">圆形单选
多选框<input type="checkbox"> 方型
下拉菜单
<select>
<option>嘿嘿</option>
<option>哈哈</option>
<option>呜呜</option>
<option>拉拉</option>
</select>
长输入框
<textarea cols="30" rows="10">这头猪</textarea>
按钮标签
方式一:<input type="button" value="保存">
方式二:<button>保存</button>
标签:菜单 链接 strong 哈哈 圆形 inpu https text 单选
原文地址:https://www.cnblogs.com/qd01/p/9299420.html