html简单网页代码期末作业
时间: 2024-01-27 09:14:23 浏览: 65
以下是一个简单的HTML网页代码示例,可以作为期末作业的参考:
```html
<!DOCTYPE html>
<html>
<head>
<title>My Simple Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
color: #333333;
text-align: center;
}
p {
color: #666666;
text-align: justify;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
.image {
text-align: center;
margin-bottom: 20px;
}
.image img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My Simple Webpage</h1>
<div class="image">
<img src="image.jpg" alt="Image">
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam auctor, nunc id aliquet lacinia, nisl justo ultrices nunc, nec tincidunt nunc nunc id mauris. Sed euismod, nunc id aliquet lacinia, nisl justo ultrices nunc, nec tincidunt nunc nunc id mauris.</p>
</div>
</body>
</html>
```
这个示例包含了一个简单的网页结构,包括标题、样式和内容。你可以根据需要进行修改和扩展,添加更多的元素和样式来创建你自己的网页。