-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
96 lines (96 loc) · 3.13 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<title>罗小黑战记介绍页面</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #000;
color: #fff;
padding: 20px;
text-align: center;
font-size: 30px;
font-weight: bold;
}
main {
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
section {
margin: 20px;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
border-radius: 5px;
width: 300px;
height: 400px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
section img {
width: 200px;
height: 300px;
object-fit: cover;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
section h2 {
font-size: 24px;
margin: 0;
padding: 0;
text-align: center;
}
section p {
font-size: 16px;
margin: 0;
padding: 0;
text-align: center;
line-height: 1.5;
}
footer {
background-color: #000;
color: #fff;
padding: 20px;
text-align: center;
font-size: 14px;
}
</style>
</head>
<body>
<header>
罗小黑战记介绍页面
</header>
<main>
<section>
<img src="./img/post_1.jpg" alt="罗小黑战记">
<h2>罗小黑战记</h2>
<p>《罗小黑战记》是一部由国内知名动画公司B站动画与国际知名动画公司制作的动画电影,讲述了一只黑猫罗小黑与一只小女孩萝卜在异世界中的冒险故事。</p>
</section>
<section>
<img src="https://img1.doubanio.com/view/photo/s_ratio_poster/public/p2629959246.jpg" alt="罗小黑战记">
<h2>剧情简介</h2>
<p>故事发生在一个神秘的异世界中,一只黑猫罗小黑和一只小女孩萝卜相遇了。萝卜带着罗小黑来到了她的家乡,但是这个家乡却被一只凶恶的怪兽所侵袭。为了保护家乡,萝卜和罗小黑踏上了冒险之旅。</p>
</section>
<section>
<img src="https://img1.doubanio.com/view/photo/s_ratio_poster/public/p2629959246.jpg" alt="罗小黑战记">
<h2>制作团队</h2>
<p>导演:孙海英<br>编剧:孙海英、张海宇<br>配乐:陈子鸿<br>制作公司:B站动画、国际知名动画公司</p>
</section>
</main>
<footer>
© 2021 罗小黑战记介绍页面 | Powered by Lightly
</footer>
</body>
</html>