记录一些基本操作
<!DOCTYPE html> <!-- 声明为html5文档 -->
<html>
<!-- <html>元素是html页面的根元素-->
<head>
<meta charset="utf-8"><!-- 定义网页编码格式 以防乱码 -->
<title>WORLD</title> <!-- 描述文档标题 -->
</head>
<body>
<iframe src="https://cn.bing.com/?FORM=Z9FD1" height="200" width="1300" title="description"></iframe>
<!-- # 包含可见的页面内容 -->
<h1>HELLO</h1> <!-- 定义一个大标题 -->
<p>Hello world!</p> <!-- 定义一个段落 -->
<br>
<!--换行-->
<hr>
<!--水平线-->
<b>粗体文本</b>
<code>计算机代码</code>
<em>强调文本</em>
<i>斜体文本</i>
<kbd>键盘输入</kbd>
<pre>预格式化</pre>
<small>更小的文本</small>
<strong>重要的文本</strong>
<h2>HELLO</h2>
<p>Hello world!</p> <!-- 标题字体递减 -->
<a href="https://cn.bing.com/?FORM=Z9FD1">Microsoft Bing</a> <!-- 普通链接 -->
<a href="https://cn.bing.com/?FORM=Z9FD1"><img src="./image/Microsoft Bing.png" alt="Bing"></a>
<!--图像链接-->
<a href="mailto:1291095196@qq.com">发送e-mail</a>
<!--邮件链接-->
<img src="./image/Microsoft Bing.png" width="260" height="70" />
<!-- <table>表格 <tr>行</tr> <th>表头</th> <td>单元格</td> -->
<style>
h1 {
color: red;
}
p {
color: blue;
}
</style>
<!--设置文字颜色-->
<div>文档中的块级元素</div>
<span>文档中的内联元素</span>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
<!-- · 项目-->
<ol>
<li>第一项</li>
<li>第二项</li>
</ol>
<!--1.第一项 二者区别在于前面是否有标号-->
<dl>
<dt>项目 1</dt>
<dd>描述项目 1</dd>
<dt>项目 2</dt>
<dd>描述项目 2</dd>
</dl>
<!--定义列表 缩进-->
<table border="1">
<!--border表示边框厚度-->
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<!--表格-->
<form action="demo_form.php" method="post/get">
<input type="text" name="email" size="40" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit" value="Send">
<input type="reset">
<input type="hidden">
<select>
<option>苹果</option>
<option selected="selected">香蕉</option>
<option>樱桃</option>
</select>
<textarea name="comment" rows="60" cols="20"></textarea>
</form>
</body>
</html>
<!--
<abbr> (缩写)
<address> (联系信息)
<bdo> (文字方向)
<blockquote> (从另一个源引用的部分)
<cite> (工作的名称)
<del> (删除的文本)
<ins> (插入的文本)
<sub> (下标文本)
<sup> (上标文本)
-->
<!--
实体
< 等同于 <
> 等同于 >
© 等同于 ©
-->