73 lines
1.5 KiB
HTML
73 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>盒模型卡片</title>
|
|
<style>
|
|
body{
|
|
background-color: rgb(226, 239, 251);
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.course-card{
|
|
|
|
background-color: white;
|
|
border-radius: 20px;
|
|
margin-top: 50px;
|
|
width: 400px;
|
|
height: 300px;
|
|
}
|
|
|
|
.tag{
|
|
background-color: rgba(85, 128, 177, 0.223);
|
|
border-radius: 20px;
|
|
margin-top: 30px;
|
|
margin-left: 30px;
|
|
padding-top: 5px;
|
|
padding-left: 8px;
|
|
padding-bottom: 5px;
|
|
padding-right: 5px;
|
|
width: 90px;
|
|
color: blue;
|
|
}
|
|
|
|
h1{
|
|
margin-left: 30px;
|
|
}
|
|
|
|
p{
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.actions{
|
|
background-color: blue;
|
|
width: 90px;
|
|
height: 35px;
|
|
margin-left: 30px;
|
|
padding-top: 13px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
a{
|
|
color: white;
|
|
text-decoration: none;
|
|
padding-left: 13px;
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<article class="course-card">
|
|
<p class="tag">HTML 基础</p>
|
|
<h1>前端入门训练营</h1>
|
|
<p>从 HTML 结构开始,逐步学习 CSS 布局和 JavaScript 基础。</p>
|
|
|
|
<div class="actions">
|
|
<a href="#">立即报名</a>
|
|
</div>
|
|
</article>
|
|
</body>
|
|
</html>
|