请问能用html,css和javascript写一个不小于10个网页的电影在线网站的模板吗
时间: 2023-06-20 09:08:11 浏览: 93
是的,可以使用HTML、CSS和JavaScript来创建一个电影在线网站的模板。以下是一个简单的示例:
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>电影在线网站</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">电影列表</a></li>
<li><a href="#">最新电影</a></li>
<li><a href="#">关于我们</a></li>
</ul>
</nav>
</header>
<main>
<section class="banner">
<h1>欢迎来到电影在线网站</h1>
<p>观看最新电影,享受高清画质和优质服务</p>
<a href="#" class="button">开始观看</a>
</section>
<section class="movie-list">
<h2>电影列表</h2>
<ul>
<li>
<a href="#">
<img src="movie1.jpg" alt="电影1">
<h3>电影1</h3>
</a>
</li>
<li>
<a href="#">
<img src="movie2.jpg" alt="电影2">
<h3>电影2</h3>
</a>
</li>
<li>
<a href="#">
<img src="movie3.jpg" alt="电影3">
<h3>电影3</h3>
</a>
</li>
</ul>
</section>
<section class="latest-movies">
<h2>最新电影</h2>
<ul>
<li>
<a href="#">
<img src="movie4.jpg" alt="电影4">
<h3>电影4</h3>
</a>
</li>
<li>
<a href="#">
<img src="movie5.jpg" alt="电影5">
<h3>电影5</h3>
</a>
</li>
<li>
<a href="#">
<img src="movie6.jpg" alt="电影6">
<h3>电影6</h3>
</a>
</li>
</ul>
</section>
</main>
<footer>
<p>© 2021 电影在线网站</p>
</footer>
</body>
</html>
```
CSS代码:
```css
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.banner {
background-image: url("banner.jpg");
height: 400px;
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
}
.banner h1 {
font-size: 48px;
margin-bottom: 20px;
}
.banner p {
font-size: 24px;
margin-bottom: 20px;
}
.button {
background-color: #ff9900;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
}
.button:hover {
background-color: #ff6600;
}
.movie-list h2,
.latest-movies h2 {
font-size: 36px;
margin-bottom: 20px;
}
.movie-list ul,
.latest-movies ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
}
.movie-list li,
.latest-movies li {
flex: 1 1 300px;
margin-right: 20px;
margin-bottom: 20px;
}
.movie-list li:last-child,
.latest-movies li:last-child {
margin-right: 0;
}
.movie-list img,
.latest-movies img {
width: 100%;
}
.movie-list h3,
.latest-movies h3 {
font-size: 24px;
margin-top: 10px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
```
JavaScript代码:
```javascript
// 留空
```
以上是一个简单的电影在线网站的模板,你可以根据需求进行修改和扩展,添加更多的页面和功能。
阅读全文