Websites
Build pages with HTML and CSS.
Unit 6 Website Development - Tutorial 2
Use flex containers for simple one-dimensional layouts.
Flexbox arranges child elements inside a container. A row places items side by side, while a column stacks them vertically. It is useful for navigation bars, card rows and aligned groups of content.
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-direction: row;
}
.card-column {
display: flex;
flex-direction: column;
}
Build pages with HTML and CSS.
Create interactive projects.
Plan simple app ideas.