You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
921 B
28 lines
921 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>《哪吒2》宣传网页</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 id="title">《哪吒2》</h1>
|
|
<p id="description"></p>
|
|
<div class="trailer">
|
|
<h2>预告片</h2>
|
|
<iframe id="trailer-iframe" width="560" height="315" src="" frameborder="0" allowfullscreen></iframe>
|
|
</div>
|
|
<div class="cast">
|
|
<h2>主演介绍</h2>
|
|
<div id="cast-container"></div>
|
|
</div>
|
|
<div class="info">
|
|
<p><strong>上映日期:</strong><span id="release-date"></span></p>
|
|
<p><strong>分级:</strong><span id="rating"></span></p>
|
|
</div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|