-
标题<h1>--<h6>
<h1>标题</h1> <h2>标题</h2> <h3>标题</h3>
效果:
<h1>标题</h1> <h2>标题</h2><h3>标题</h3>
以此类推~
-
段落<p>
<p>段落一</p> <p><i>段落二</i></p>
<i>设置斜体
效果:
<p>段落一</p><p><i>段落二</i></p>
<strong>设置粗体
-
链接<a>
<a href="https://www.baidu.com">https://www.baidu.com</a>
效果:
<a href="https://www.baidu.com">https://www.baidu.com</a>
-
图像<img>
![](1.jpg)
效果:
-
列表
-
有序列表
<ol>
<li>大</li>
<li>小</li>
</ol> -
无序列表<ul>
<ul>
<li>大</li>
<li>小</li>
</ul>
-
-
表格<table>
<table> <tr> <th></th> </tr> <tr> <td></td> </tr> <tr> <td></td> </tr> </table>
表格的表头使用 <th> 标签进行定义。<tr>表示行,<th>表示每行中的单元格
-
表单<form>
html表单包含表单元素,表单元素指的是不同类型的 input 元素、复选框、单选按钮、提交按钮等等,
<form>
<input type=""/>
</form>
type类型:
text 定义常规文本输入。
radio 定义单选按钮输入(选择多个选择之一)
submit 定义提交按钮(提交表单)
button 定义按钮
网友评论