HTML 基本框架
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>标题</title>
</head>
<body>
正文
</body>
</html>
HTML 排版标签
<h1>一级标题</h1>
<h2>二级标题</h2>
<h6>六级标题</h6>
<p>
段落
</p>
<br> <!-- 换行 -->
<hr> <!-- 水平线 -->
<!-- 注释 -->
文本格式化
<b>粗体</b>
<code>行内代码</code>
<em>强调</em>
<i>斜体</i>
<kbd>键盘</kbd>
<pre>预格式化</pre>
<small>小号文本</small>
<strong>重要</strong>
<del>删除线</del>
<abbr>缩写</abbr>
<address>地址</address>
<bdo dir="rtl">文字方向从右到左</bdo>
<blockquote>引用</blockquote>
<cite>引用</cite>
<ins>插入</ins>
<sub>下标</sub>
<sup>上标</sup>
链接
<a href="url">超链接</a>
<a href="mailto:邮箱地址">发邮件</a>
<!-- 书签 -->
<a id="tips">打书签</a>
<a href="#tips">点击跳转到书签</a>
图片
<img decoding="async" loading="lazy" src="url" alt="替换文本" height="100" width="100">
异步加载、懒加载
定义样式
<style type="text/css">
h1 {color:red;}
p {color:black;}
</style>
<div>
块级元素
</div>
<span>内联元素</span>
列表
<!-- 无序列表 -->
<ul>
<li>项目<li>
<li>项目<li>
</ul>
<!-- 有序列表 -->
<ol>
<li>第一项</li>
<li>第二项</li>
</ol>
表格
<table border="1">
<tr>
<th>1,1</th><th>1,2</th>
</tr>
<tr>
<td>2,1</td><td>2,2</td>
</tr>
</table>
页中页框架
<iframe src="url"></iframe>
表单
<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>
评论