html5 设计篮球介绍页面的代码
时间: 2023-09-29 22:02:46 浏览: 145
以下是一个简单的 HTML5 篮球介绍页面的代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>篮球介绍页面</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
text-align: center;
margin-top: 50px;
color: #333;
}
p {
margin: 20px 0;
padding: 0 50px;
font-size: 18px;
line-height: 1.5;
color: #666;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-top: 50px;
}
.item {
width: 300px;
height: 200px;
margin: 20px;
padding: 10px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease-in-out;
cursor: pointer;
}
.item:hover {
transform: scale(1.05);
}
.item img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 5px;
}
.item h2 {
margin-top: 10px;
font-size: 20px;
color: #333;
}
.item p {
margin-top: 5px;
font-size: 16px;
color: #666;
}
</style>
</head>
<body>
<h1>篮球介绍</h1>
<p>篮球是一项流行的运动项目,它以投篮、运球、传球、防守等技术为主要内容。下面是一些篮球相关的内容,包括篮球历史、篮球技巧、篮球明星等。</p>
<div class="container">
<div class="item">
<img src="https://cdn.pixabay.com/photo/2015/09/18/20/26/basketball-948499_1280.jpg" alt="篮球历史">
<h2>篮球历史</h2>
<p>篮球的起源可以追溯到1891年,由美国人詹姆斯·内斯密斯发明。最初的篮球比赛是在同一年在美国马萨诸塞州的一个学院举行的。</p>
</div>
<div class="item">
<img src="https://cdn.pixabay.com/photo/2014/11/28/14/21/basketball-548065_1280.jpg" alt="篮球技巧">
<h2>篮球技巧</h2>
<p>篮球技巧是篮球运动中的重要组成部分,包括投篮、运球、传球、防守等。想要成为一名优秀的篮球运动员,就需要不断练习各种技巧。</p>
</div>
<div class="item">
<img src="https://cdn.pixabay.com/photo/2016/11/14/05/31/basketball-player-1822449_1280.jpg" alt="篮球明星">
<h2>篮球明星</h2>
<p>篮球界有很多著名的球星,例如迈克尔·乔丹、勒布朗·詹姆斯、科比·布莱恩特等。他们的精湛球技和出色表现,让他们成为了篮球界的传奇人物。</p>
</div>
</div>
</body>
</html>
```
该页面包括一个标题、一段简短的介绍内容和三个内容块,每个内容块包括一张图片、一个标题和一段描述。使用了 CSS 样式来美化页面,使其看起来更加整洁和美观。
阅读全文