<h1>第一标题</h1>
<h2>第二标题</h2>
<h3>第三标题</h3>
<h4>第四标题</h4>
<h5>第五标题</h5>
<h6>最小标题</h6>
<p>这是一个段落</p>
<b style="background-color: red;width: 100%">这个是粗体</b> <br>
<marquee behavior="2" direction="2">滚动</marquee>
<hr>
<!--文本格式化-->
<code>计算机代码</code>
<em强调文本</em>>
<i>斜体</i>
<kbd>键盘输入</kbd>
<pre>预格式化文本</pre>
<small>更小的文本</small>
<strong>重要的文本</strong>
<abbr>缩写</abbr>
<address>联系人信息</address>
<bdo>文字方向</bdo>
<blockquote>从另一个源引用的部分</blockquote>
<cite>工作的名称</cite>
<del>删除的文本</del>
<ins>插入的文本</ins>
<sub>下标文本</sub>
<sup>上标文本</sup>
<!--链接-->
<a href="https://www.baidu.com" target="_blank">普通的链接</a>
<a href="https://www.baidu.com" target="_blank"><img src="images/1.jpeg" alt="替换文本"></a>
<a href="mailto:1353462015@qq.com">发送email</a>
<!--书签:-->
<a id="tips">提示部分</a>
<a href="#tips">跳到提示部分</a>
<!--图片-->
<img src="images/1.jpeg" alt="替换文本" height="20px" width="20px">
<!--样式 区块 -->
<
<style type="text/css">
h4 {color: red;}
p {color: red}
</style>
<div>文档的块级元素</div>
<span>内敛元素</span>
<!--无序列表-->
<ul>
<li>苹果</li>
<li>例子</li>
<li>花生</li>
</ul>
<!--有序列表-->
<ol>
<li>您</li>
<li>我</li>
<li>他</li>
</ol>
<!--自定义列表-->
<dl>
<dt>好</dt>
<dt>很好</dt>
<dt>非常好</dt>
<dt>特别好</dt>
<dd>这个是对好的解释</dd>
</dl>
<table border="1" cellspacing="0" cellpadding="10">
<tr >
<td>单元格</td>
<td>单元格</td>
<td>单元格</td>
</tr>
<tr>
<td>单元格</td>
<td>单元格</td>
<td>单元格</td>
</tr>
</table>
<!--框架-->
<iframe src="firstHtml.html"></iframe>
<!--表单-->
<form>
<input type="text" name="email" size="40" maxlength="50">
<input type="password"/>
<input type="checkbox" checked/>
<input type="radio" checked/>
<input type="submit" value="提交"/>
<input type="reset" value="重置"/>
<input type="hidden"/>
<select name="selectName" id="selectId">
<option value="苹果">苹果</option>
<option value="橘子" selected>橘子</option>
<option value="香蕉">香蕉</option>
</select>
<textarea name="content" id="contentId" cols="30" rows="10"></textarea>
<!--实体-->
</form>
<div>
< > ©
</div>
HTML小结
最新推荐文章于 2022-04-21 22:04:08 发布