使用html语言实现一个商城中的个人中心页面,用于查看我的头像,昵称,发言记录,和优惠卷等信息,并做一定的页面美化
时间: 2024-06-09 18:04:57 浏览: 64
以下为使用html语言实现的个人中心页面示例代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>个人中心</title>
<style>
/* 页面样式 */
body {
margin: 0;
padding: 0;
background-color: #f7f7f7;
font-family: Arial, sans-serif;
}
h1 {
font-size: 32px;
font-weight: bold;
text-align: center;
margin: 30px 0;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 30px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.profile {
display: flex;
align-items: center;
margin-bottom: 30px;
}
.avatar {
width: 80px;
height: 80px;
border-radius: 50%;
margin-right: 20px;
}
.info {
font-size: 24px;
font-weight: bold;
}
.records {
margin-bottom: 30px;
}
.records h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.coupon {
display: flex;
align-items: center;
margin-bottom: 10px;
padding: 10px;
background-color: #f7f7f7;
border-radius: 5px;
}
.coupon img {
width: 80px;
height: 80px;
margin-right: 20px;
}
.coupon .info {
font-size: 18px;
font-weight: bold;
margin-right: 20px;
}
.coupon .code {
font-size: 18px;
color: #ff0000;
}
</style>
</head>
<body>
<div class="container">
<h1>个人中心</h1>
<div class="profile">
<img class="avatar" src="https://via.placeholder.com/80x80.png?text=Avatar" alt="Avatar">
<div class="info">
<p>昵称:小明</p>
<p>邮箱:xiaoming@example.com</p>
</div>
</div>
<div class="records">
<h2>发言记录</h2>
<ul>
<li>2021-01-01 12:00:00 在商品页面留言“这个商品很好”</li>
<li>2021-01-02 12:00:00 在订单页面留言“我想要退货”</li>
<li>2021-01-03 12:00:00 在客服页面留言“请问这个商品有其他颜色吗?”</li>
</ul>
</div>
<div class="coupons">
<h2>我的优惠券</h2>
<div class="coupon">
<img src="https://via.placeholder.com/80x80.png?text=Coupon" alt="Coupon">
<div class="info">
<p>满100元可用</p>
<p>优惠10元</p>
<p>2021-12-31前使用</p>
</div>
<div class="code">ABC123</div>
</div>
<div class="coupon">
<img src="https://via.placeholder.com/80x80.png?text=Coupon" alt="Coupon">
<div class="info">
<p>满200元可用</p>
<p>优惠20元</p>
<p>2021-12-31前使用</p>
</div>
<div class="code">DEF456</div>
</div>
<div class="coupon">
<img src="https://via.placeholder.com/80x80.png?text=Coupon" alt="Coupon">
<div class="info">
<p>满300元可用</p>
<p>优惠30元</p>
<p>2021-12-31前使用</p>
</div>
<div class="code">GHI789</div>
</div>
</div>
</div>
</body>
</html>
```
效果如下图所示:
![个人中心页面示例效果图](https://i.imgur.com/1HcHdZ2.png)
阅读全文