NEW
Font size
WorksheetsHTML/CSS
Total questions: 10
Worksheet time: 5mins
What does HTML stand for?
HyperText Markup Language
HighText Main Language
Home Tool Markup Language
What is the primary purpose of CSS (Cascading Style Sheets)?
To define the structure and layout of a web page
To add interactivity and behavior to a web page
To define the presentation and styling of a web page
Which HTML element is used to define a hyperlink?
<a>
<h1>
<p>
What is the correct way to add an external CSS file to an HTML document?
<style src="styles.css">
<link rel="stylesheet" href="styles.css">
<script src="styles.css">
Which CSS property is used to change the text color?
text-color
color
font-color
How do you select an element with the id "myElement" in CSS?
#myElement
.myElement
*myElement
Which CSS property is used to add spacing between elements?
margin
padding
spacing
Which HTML tag is used to define a table row?
<tr>
<td>
<table>
How do you center-align text in CSS?
text-align: center;
align: center;
justify-content: center;
What does the CSS property "display: none;" do?
It hides an element from the web page.
It changes the font size of an element to zero.
It removes all borders from an element.
