以下是HTML基础代码:
<!DOCTYPE html>
<html>
<head>
<title>网页标题</title>
</head>
<body>
<h1>这是一级标题</h1>
<p>这是一个段落。</p>
<img src="图片路径" alt="图片描述">
<a href="链接地址">这是一个链接</a>
<ul>
<li>无序列表项1</li>
<li>无序列表项2</li>
<li>无序列表项3</li>
</ul>
<ol>
<li>有序列表项1</li>
<li>有序列表项2</li>
<li>有序列表项3</li>
</ol>
<table>
<thead>
<tr>
<th>表格头1</th>
<th>表格头2</th>
</tr>
</thead>
<tbody>
<tr>
<td>表格内容1</td>
<td>表格内容2</td>
</tr>
<tr>
<td>表格内容3</td>
<td>表格内容4</td>
</tr>
</tbody>
</table>
<form action="处理表单的页面" method="post">
<label for="name">姓名:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email"><br><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
以上代码展示了HTML中常用的标签,包括标题、段落、图片、链接、列表、表格、表单等。需要注意的是,其中的图片路径和链接地址需要根据实际情况进行填写。