- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The course card</title>
<link href="course.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body class="subtle">
<section class="cards">
<article class="card">
<h1 class="card-heading">2D-transformations</h1>
<div class="card-meta">
<div class="card-category">
<span class="card-icon icon-tag">Category: </span>
<span>HTML, CSS</span>
</div>
<div class="card-duration">
<span class="card-icon icon-time">Course time: </span>
<span>2 hours</span>
</div>
</div>
<div class="card-content">
<figure class="card-figure">
<img class="card-img" src="img/course-2.png" alt="Muffin">
<figcaption>
<p>We will learn how to rotate, tilt, move, shrink, and magnify objects, and we will even learn how to blow them up with fireballs.</p>
</figcaption>
</figure>
<button class="card-button">Start course</button>
</div>
</article>
</section>
</body>
</html>
CSS
.card {
box-sizing: border-box;
padding: 20px;
max-width: 70%;
}
.card-img {
width: 100%;
}
/* Decorative outlines */
.card {
outline: 2px solid rgba(255, 0, 0, 0.3);
outline-offset: -2px;
}
.card > * {
outline: 2px solid rgba(0, 128, 0, 0.3);
outline-offset: 1px;
}
.card-meta > * {
outline: 2px solid rgba(0, 0, 0, 0.5);
outline-offset: -3px;
}
You’ve gone to a different page
Goalscompleted
0
- Assign the flexbox layout for the
.card
, - and align the main axis from top to bottom.
- Then set
.card-meta
for the flexbox layout, - and assign a growth factor of
1
for.card-category
.
Comments