Loading...
When building websites, two essential technologies work together to create visually appealing and functional pages: HTML (HyperText Markup Language) and CSS (Cascading Style Sheets).
HTML stands for HyperText Markup Language and is the foundation of web pages. It structures content using elements like headings, paragraphs, links, and images. HTML provides the basic framework but does not define the design or appearance of a webpage.
CSS stands for Cascading Style Sheets and is used to control the design of web pages. CSS allows you to change colors, fonts, layouts, and other stylistic features, making the webpage visually engaging.
The following are important CSS properties:
The background-color
property sets the background color of an element. Example:
body { background-color: lightblue; }
The color
property changes the text color, not the background.
A CSS class is a reusable style that can be applied to multiple elements. It is defined using a period (.
) before the class name.
.container { width: 80%; margin: auto; }
By understanding these basics, you’ll be ready to answer questions about HTML and CSS in the quiz!
Question 1: A - HyperText Markup Language
Question 2: C - Cascading Style Sheets
Question 3: A - background-color
Question 4: C - .container
Score: