初学者网页设计代码html+css演唱会
时间: 2023-10-20 22:14:47 浏览: 216
下面是一个简单的演唱会网页设计,使用HTML和CSS:
```html
<!DOCTYPE html>
<html>
<head>
<title>演唱会</title>
<style>
body {
background-color: #f2f2f2;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
font-size: 30px;
}
nav {
background-color: #ccc;
padding: 10px;
text-align: center;
font-size: 20px;
}
nav a {
color: black;
text-decoration: none;
margin: 20px;
}
section {
margin: 20px;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 5px 5px 5px #888888;
}
h1 {
font-size: 25px;
}
p {
font-size: 20px;
line-height: 1.5;
}
img {
width: 100%;
height: auto;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
font-size: 15px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
</style>
</head>
<body>
<header>
<h1>演唱会</h1>
</header>
<nav>
<a href="#">主页</a>
<a href="#">演出阵容</a>
<a href="#">票务信息</a>
<a href="#">场馆地图</a>
<a href="#">联系我们</a>
</nav>
<section>
<h1>演出阵容</h1>
<p>本次演唱会邀请了众多知名歌手和乐队参加,包括:</p>
<ul>
<li>张三</li>
<li>李四</li>
<li>王五</li>
<li>赵六</li>
<li>乐队A</li>
<li>乐队B</li>
</ul>
<p>他们将带来精彩的表演,让你感受到音乐的魅力!</p>
</section>
<section>
<h1>票务信息</h1>
<p>本次演唱会的票务信息如下:</p>
<table>
<tr>
<th>票种</th>
<th>价格</th>
<th>数量</th>
</tr>
<tr>
<td>普通票</td>
<td>100元</td>
<td>1000张</td>
</tr>
<tr>
<td>VIP票</td>
<td>500元</td>
<td>200张</td>
</tr>
</table>
<p>你可以在以下地点购买门票:</p>
<ul>
<li>售票网站A</li>
<li>售票网站B</li>
<li>现场售票</li>
</ul>
</section>
<section>
<h1>场馆地图</h1>
<img src="map.png" alt="场馆地图">
</section>
<footer>
<p>版权所有 © 2021 演唱会公司</p>
</footer>
</body>
</html>
```
说明:
- 使用`<header>`标签表示页面顶部,包括标题和logo等信息;
- 使用`<nav>`标签表示导航栏,包括各个页面链接;
- 使用`<section>`标签表示内容区域,包括演出阵容、票务信息和场馆地图等;
- 使用CSS样式对页面进行美化,包括背景颜色、字体大小、边框和阴影等;
- 使用表格和列表展示票务信息和购票地点;
- 使用`<img>`标签展示场馆地图,并设置图片的宽度自适应;
- 使用`<footer>`标签表示页面底部,包括版权信息和公司地址等。
阅读全文