Websites
Build pages with HTML and CSS.
Unit 6 Website Development - Tutorial 2
Turn repeated articles into a neat card layout.
Card layouts are useful when several pieces of content have the same importance. Flexbox can place cards in a responsive row with equal spacing and wrapping.
css/style.cssAdd or adapt this CSS in the stylesheet you created in Tutorial 1. Keep the HTML structure from Tutorial 1 and use CSS to improve the presentation.
.card-row {
display: flex;
flex-wrap: wrap;
gap: 18px;
}
.club-card {
flex: 1 1 220px;
padding: 18px;
border: 2px solid #b9c8f8;
border-radius: 8px;
}
Build pages with HTML and CSS.
Create interactive projects.
Plan simple app ideas.