电影静态页面 实现 练习相关代码.html css
warning:
这篇文章距离上次修改已过222天,其中的内容可能已经有所变动。
由于您的问题没有提供具体的页面需求,我将提供一个简单的HTML和CSS示例,用于创建一个电影静态页面的骨架。这个示例包括了页面的基本结构和样式,但不包含具体的内容。您可以根据这个骨架进一步填充电影信息和内容。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Static Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: flex-start;
height: 100vh;
}
.movie-info {
width: 500px;
padding: 20px;
background-color: #f2f2f2;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.movie-info h1 {
margin-bottom: 20px;
text-align: center;
}
.movie-info img {
width: 100%;
margin-bottom: 20px;
}
.movie-info p {
margin: 10px 0;
}
</style>
</head>
<body>
<div class="movie-info">
<h1>Movie Title</h1>
<img src="poster.jpg" alt="Movie Poster">
<p>
<strong>Genre:</strong> Action, Thriller
</p>
<p>
<strong>Release Date:</strong> 2023-01-01
</p>
<p>
<strong>Director:</strong> John Doe
</p>
<p>
<strong>Cast:</strong> John Doe, Jane Doe, ...
</p>
<p>
<strong>Plot:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit...
</p>
</div>
</body>
</html>
这个HTML和CSS示例提供了一个简单的电影静态页面的框架。您可以根据实际的电影信息修改<h1>
, <img>
, 段落元素中的内容和属性。
评论已关闭