HTML基本标签使用【超链接标签、表格标签、表单标签、input标签】
warning:
这篇文章距离上次修改已过223天,其中的内容可能已经有所变动。
<!DOCTYPE html>
<html>
<head>
<title>基础标签示例</title>
</head>
<body>
<!-- 超链接标签 -->
<a href="https://www.example.com">访问Example网站</a>
<!-- 表格标签 -->
<table border="1">
<tr>
<th>姓名</th>
<th>年龄</th>
</tr>
<tr>
<td>张三</td>
<td>28</td>
</tr>
<tr>
<td>李四</td>
<td>32</td>
</tr>
</table>
<!-- 表单标签 -->
<form action="/submit">
<!-- 文本输入框 -->
<label for="username">用户名:</label>
<input type="text" id="username" name="username">
<!-- 密码输入框 -->
<label for="password">密码:</label>
<input type="password" id="password" name="password">
<!-- 提交按钮 -->
<input type="submit" value="登录">
</form>
</body>
</html>
这段代码展示了如何在HTML中使用超链接、表格和表单以及input标签。其中,<a>
标签用于创建超链接,<table>
、<tr>
、<th>
和 <td>
标签用于创建表格,<form>
标签包含了输入框和提交按钮。
评论已关闭