html用css代码设计一个单部电影推荐蓝色调页面并注释
时间: 2023-06-15 07:08:12 浏览: 126
以下是一个简单的单部电影推荐蓝色调页面的HTML和CSS代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>电影推荐页面</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #e1eefc;
font-family: Arial, sans-serif;
}
header {
background-color: #1c2331;
color: #fff;
padding: 20px;
text-align: center;
font-size: 24px;
font-weight: bold;
text-transform: uppercase;
}
main {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
h1 {
font-size: 36px;
color: #1c2331;
margin-bottom: 20px;
}
p {
font-size: 18px;
color: #333;
line-height: 1.5;
margin-bottom: 10px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
li {
margin: 20px;
text-align: center;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
border-radius: 10px;
overflow: hidden;
width: 300px;
height: 500px;
}
img {
max-width: 100%;
height: 350px;
object-fit: cover;
}
h2 {
font-size: 24px;
color: #1c2331;
margin: 10px 0;
}
button {
background-color: #1c2331;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #fff;
color: #1c2331;
border: 2px solid #1c2331;
}
</style>
</head>
<body>
<header>
电影推荐页面
</header>
<main>
<h1>本周推荐</h1>
<ul>
<li>
<img src="https://via.placeholder.com/300x350" alt="电影1">
<h2>电影1</h2>
<p>电影1的简介</p>
<button>查看详情</button>
</li>
<li>
<img src="https://via.placeholder.com/300x350" alt="电影2">
<h2>电影2</h2>
<p>电影2的简介</p>
<button>查看详情</button>
</li>
<li>
<img src="https://via.placeholder.com/300x350" alt="电影3">
<h2>电影3</h2>
<p>电影3的简介</p>
<button>查看详情</button>
</li>
<li>
<img src="https://via.placeholder.com/300x350" alt="电影4">
<h2>电影4</h2>
<p>电影4的简介</p>
<button>查看详情</button>
</li>
</ul>
</main>
</body>
</html>
```
注释如下:
- `<!DOCTYPE html>` 声明文档类型为HTML5
- `<html>` 根元素
- `<head>` 头部元素,用于包含页面的元数据和引用外部文件
- `<title>` 页面标题
- `<style>` 定义页面的样式
- `body` 元素,包含整个页面的内容
- `header` 元素,页面的标题栏
- `main` 元素,包含页面的主要内容
- `h1` 元素,页面标题
- `ul` 元素,无序列表,用于包含推荐的电影
- `li` 元素,列表项,用于包含每个推荐的电影
- `img` 元素,用于显示电影的海报
- `h2` 元素,用于显示电影的标题
- `p` 元素,用于显示电影的简介
- `button` 元素,用于查看电影的详情
阅读全文