编写一个html页面,使用表格来控制整个html页面和页面内的CSS样式,页面内需包含图片、表格、表单、新页面超链接、锚点、字体、水平线、列表、Div,还需要标出每行注释
时间: 2023-07-10 20:18:08 浏览: 234
好的,以下是一个简单的示例HTML页面,其中使用了表格来控制页面布局和CSS样式,并包含了图片、表格、表单、超链接、锚点、字体、水平线、列表和Div标签。每行代码后面都有注释,以帮助您更好地理解代码的作用。请注意,此示例仅用于演示目的,您可以根据自己的需求进行修改和扩展。
```html
<!DOCTYPE html>
<html>
<head>
<title>示例页面</title>
<style>
/* CSS样式定义 */
body {
font-family: Arial, sans-serif;
font-size: 16px;
margin: 0;
padding: 0;
}
h1 {
font-size: 24px;
margin: 20px 0;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
text-align: left;
padding: 8px;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
}
form {
margin: 20px 0;
}
label {
display: block;
margin-bottom: 8px;
}
input[type="text"], input[type="password"], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
img {
max-width: 100%;
}
hr {
border: none;
border-top: 1px solid #ddd;
margin: 20px 0;
}
ul {
list-style-type: disc;
margin: 0;
padding: 0 0 0 40px;
}
li {
margin-bottom: 8px;
}
.container {
width: 80%;
margin: 0 auto;
}
</style>
</head>
<body>
<table>
<!-- 页面头部 -->
<thead>
<tr>
<th colspan="2">
<h1>示例页面</h1>
</th>
</tr>
</thead>
<!-- 页面内容 -->
<tbody>
<tr>
<td style="vertical-align: top; width: 25%;">
<!-- 左侧导航栏 -->
<ul>
<li><a href="#section1">Section 1</a></li>
<li><a href="#section2">Section 2</a></li>
<li><a href="#section3">Section 3</a></li>
</ul>
</td>
<td style="vertical-align: top;">
<!-- 右侧内容区 -->
<div id="section1">
<h2>Section 1</h2>
<p>这是第一节内容。</p>
<img src="https://via.placeholder.com/800x400" alt="示例图片">
<form>
<label for="name">姓名:</label>
<input type="text" id="name" name="name">
<label for="password">密码:</label>
<input type="password" id="password" name="password">
<label for="gender">性别:</label>
<select id="gender" name="gender">
<option value="male">男</option>
<option value="female">女</option>
</select>
<input type="submit" value="提交">
</form>
</div>
<div id="section2">
<h2>Section 2</h2>
<p>这是第二节内容。</p>
<hr>
<p><a href="#top">返回顶部</a></p>
</div>
<div id="section3">
<h2>Section 3</h2>
<p>这是第三节内容。</p>
<table>
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>25</td>
</tr>
<tr>
<td>李四</td>
<td>30</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">总共有2个人</td>
</tr>
</tfoot>
</table>
</div>
</td>
</tr>
</tbody>
<!-- 页面底部 -->
<tfoot>
<tr>
<td colspan="2" style="text-align: center;">
<p>版权所有 © 2021 示例公司</p>
</td>
</tr>
</tfoot>
</table>
<!-- 页面容器 -->
<div class="container">
<!-- 页脚链接 -->
<p><a href="#section1">回到顶部</a></p>
</div>
</body>
</html>
```
阅读全文