制作蔡徐坤HTML+CSS偶像页面代码
时间: 2023-11-15 13:06:15 浏览: 263
明星个人网站蔡徐坤网页设计(HTML+CSS)
以下是一个简单的蔡徐坤偶像页面的 HTML 和 CSS 代码,你可以根据自己的需求进行修改和定制。
```html
<!DOCTYPE html>
<html>
<head>
<title>蔡徐坤偶像页面</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
.header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
font-size: 36px;
font-weight: bold;
}
.image {
margin-top: 50px;
text-align: center;
}
.image img {
width: 300px;
height: 300px;
border-radius: 50%;
}
.content {
margin-top: 50px;
padding: 0 20px;
text-align: center;
}
.content p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}
.social {
margin-top: 50px;
text-align: center;
}
.social a {
display: inline-block;
margin: 0 20px;
font-size: 24px;
color: #333;
text-decoration: none;
}
.social a:hover {
color: #f00;
}
</style>
</head>
<body>
<header class="header">
蔡徐坤偶像页面
</header>
<div class="image">
<img src="https://www.baidu.com/img/bd_logo1.png" alt="蔡徐坤">
</div>
<div class="content">
<p>蔡徐坤,1998年8月2日出生于湖南省长沙市,中国内地男歌手、演员、舞者,前韩国JYP娱乐旗下艺人。</p>
<p>2016年,蔡徐坤参加选秀节目《偶像练习生》并获得第一名,随后加入组合Nine Percent。2018年,蔡徐坤退出Nine Percent,正式开始个人发展,发行了多首单曲和专辑,获得了广泛关注和认可。</p>
</div>
<div class="social">
<a href="#">微博</a>
<a href="#">抖音</a>
<a href="#">B站</a>
</div>
</body>
</html>
```
这个页面包含一个头部,一张图片,一些简介内容和一些社交媒体链接。你可以根据自己的喜好和需求进行修改和定制,例如更换图片、改变背景颜色、添加新的内容等等。
阅读全文