Websites
Build pages with HTML and CSS.
Unit 6 Website Development - Tutorial 2
Create styles that can be applied to selected elements.
A class selector starts with a full stop in CSS, such as .club-card. In HTML, the same class name is added without the full stop. Classes let you reuse a style on several elements without styling every article on the website.
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.
.club-card {
padding: 18px;
border: 2px solid #b9c8f8;
border-radius: 8px;
background-color: white;
}
Build pages with HTML and CSS.
Create interactive projects.
Plan simple app ideas.