首页 > 技术文章 > Html简单标签

hjk-airl 2022-04-28 19:07 原文

前言

记录一下学习html,初识前端,记录一些html的常用标签,虽然简单,但会经常用到。

<h1> 标题标签</h1>

标题标签

<p>段落标签</p>

段落标签

换行标签</br>

换行标签

水平线标签</hr>
特殊符号 &nbsp; &lt; &gt; &amp; &yen; &copy; &reg; &deg; &plusmn; &times; &divide; &sup2;<br/>

特殊符号   < > & ¥ © ® ° ± × ÷ ²

<img src="path" alt="图片" height="250" width="250"/><br/>

图片

<!--超链接-->
<a href="www.baidu.com" target="_self">百度</a>

百度

列表

有序列表:

<ol>
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ol>
  1. 1
  2. 2
  3. 3
无序列表:
<ul>
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>
  • 1
  • 2
  • 3

自定义列表:

<dl>
    <dt>学科</dt>
    <dd>java</dd>
    <dd>c</dd>
    <dd>c++</dd>
</dl>
学科
java
c
c++
表格:
  • 跨行,跨列
<table border="1">
    <tr>
        <td colspan="2">112</td><td>13</td>
    </tr>
    <tr>
        <td rowspan="2">2131</td><td>22</td><td>23</td>
    </tr>
    <tr>
        <td>32</td><td>33</td>
    </tr>
</table>
11213
21312223
3233

媒体元素

视频:

controls必须设置,不然不会显示

<video src="path" width="450" height="300" controls></video>

音频

<audio src="D:\java_work\hello_web\web\rourse\3.mp3" width="350" heigth="20" controls></audio>

表单

<form action="path" method="get">
    <p>账号:<input type="text" value="name"></p>
    <p>密码:<input type="passwordt" value="password"></p>
    <p>性别<input type="radio" name="sex" checked="checked"/>男
    <input type="radio" name="sex"/>女</p>
    <p>兴趣<input type="checkbox" name="xingqu"/>唱歌
    <input type="checkbox" name="xingqu"/>跳舞
    <input type="checkbox" name="xingqu"/>写作</p>
    <p>文件</p><input type="file" /></p>
    <p><input type="submit" value="submit"></p>
    <p><input type="reset" value="reset"></p>
</form>

账号:

密码:

性别

兴趣唱歌 跳舞 写作

文件



效果

image

image

image

总结

确实很水

推荐阅读