HTML
Body:网页主体
Title:网页标题
Head:网页头部信息
Navigation:导航
Footer:底部
H4:标题4
H2:标题2
P:段落
HR:水平线
Br:换行符
 :空格
del:中划线
无序列表:
<ul>
<li>文字</li>
</ul>
有序列表:
<ol>
<li>文字</li>
</ol>
定义列表:
<dl>
<dt></dt>
<dd></dd>
</dl>
图片:<img src="logo.jpg">
视频:<video src="green.mp4"></video>
音频:<audio src="bg.mp3"></audio>
表格:
<table>
<tr>
<td></td>
<td></td>
</tr>
</table>
表单:
<input type="表单的处理程序" value="传送方式(get/post)">
表单元素
</form>
表单元素
文本框:<input type="text"/>
密码:<input type="password"/>
单选按钮:<input type="radio"/>
复选框:<input type="checkbox"/>
普通按钮:<input type="button"/>
提交按钮:<input type="submit"/>
重置按钮:<input type="reset"/>
文件域:<input type="file"/>
邮件域:<input type="email"/>
颜色域:<input type="color"/>
搜索框:<input type="search"/>
文本框:
<textarea rows="5" cols="10">文字</textarea>
下拉列表:
<select>
<option value="湖南">湖南</option>
<option value="广东">广东</option>
</select>
</body>
</html>
© 版权声明
- 本站永久网址:https://blog.ksmlc.cn/
- 本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责
- 本站资源大多存储在云盘,如发现链接失效,请联系我们我们会第一时间更新
- 本网站的文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长QQ:2760460838进行删除处理
THE END
暂无评论内容