HTML标签集合


注释		
标题1		<h1>标题1h1>
标题2		<h2>标题2h2>
标题3		<h3>标题3h3>
标题4		<h4>标题4h4>
标题5		<h5>标题5h5>
标题6		<h6>标题6h6>
换行		<br>
水平线		<hr>
段落		<p>段落p>
粗体		<strong>粗体strong>
斜体		<em>斜体em>
删除效果		<del>删除效果del>
下划线效果	<ins>下划线效果ins>
图片		<img src="" alt="" />
超链接		<a href="#" target="">超链接a>
无序列表		<ul>
				<li>li>
				<li>li>
			ul>
有序列表		<ol>
				<li>li>
				<li>li>
			ol>
定义列表		<dl>
				<dt>dt>
				<dd>dd>
				<dt>dt>
				<dd>dd>
			dl>
表格		<table>
				<tr>
					<td>td>
				tr>
			table>
视频		<video src=""> video>
音频		<audio src=""> audio>
控件		controls
内联框架		<iframe src=""> iframe>
文本框		<input type="text">
密码框		<input type="password">
单选框		<input type="radio" >
复选框		<input type="checkbox">
下拉列表		<select >
				<option >aoption>
				<option >boption>
			select>
普通按钮		<input type="button">
提交按钮		<input type="submit">
重置按钮		<input type="reset">
文本域		<textarea>abctextarea>
文件域		<input type="file">
邮箱		<input type="email">
网站		<input type="url">
数字		<input type="number">
滑块		<input type="range">
搜索框		<input type="search">
图像按钮		<input type="image" >
表单		<form action="#">form>

你可能感兴趣的:(HTML,html,html5,前端)