Module Quiz: Introduction to HTML and CSS

A passionate full-stack developer from @ePlus.DEV
Search for a command to run...

A passionate full-stack developer from @ePlus.DEV
No comments yet. Be the first to comment.
Daily Tech Brief — 06/08/2026 Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary Claude Code 2.1.223 vá nhiều đường обх

Overview In a challenge lab you’re given a scenario and a set of tasks. Instead of following step-by-step instructions, you will use the skills learned from the labs in the course to figure out how to

🏕️ Arcade Base Camp August 2026 Welcome to Arcade Base Camp August 2026, where you’ll develop key Google Cloud skills and earn an exclusive credential that will open doors to the cloud for you. No pr

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary Google Cloud giới thiệu hai Database Operations Agents hỗ trợ onboard

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary SK hynix và Sandisk công bố đặc tả mở đầu tiên cho High Bandwidth Fla

Which two elements should be added to the html element to make the structure of an HTML document?
<!DOCTYPE html>
<html>
</html>
<div>
<head>
<p>
<body>
When using the anchor tag <a>, which attribute determines where the hyperlink links to?
link
src
href
When adding an image to a web page, which of the following is the correct HTML tag?
<image>
<img>
<link>
How many columns exist on the following HTML table?
<table>
<tr>
<td>Falafel</td>
<td>$10.00</td>
</tr>
<tr>
<td>Pasta Salad</td>
<td>$12.00</td>
</tr>
<tr>
<td>Dessert</td>
<td>$8.00</td>
</tr>
</table>
1 column
2 columns
3 columns
When an HTML form is submitted to a web server, which HTTP methods can be used? Select all that apply.
PUT
POST
DELETE
GET
For the following HTML code, which CSS selectors can be used to select the h1 element? Select all that apply.
<h1 id="title">Welcome</h1>
Element Selector
ID selector
Class Selector
Descendant Selector
In the following CSS code, what is the color: part known as?
h1 {
color: purple;
}
CSS Attribute
CSS Property
CSS Selector
CSS Rule
Based on the following CSS, what will be the margin-box width for div elements?
div {
width: 10px;
padding-left: 5px;
padding-right: 5px;
margin-left: 5px;
margin-right: 5px;
}
10 pixels
20 pixels
30 pixels
40 pixels
True or false. In document flow, block-level elements always start on a new line.
True
False
Based on the following CSS code, how will the text be aligned for the p element?
p {
text-align: justify;
}
The text will be spread out so that every line of the text has the same width within the p element.
The text will be centered inside the p element.
The text will be aligned to the right of the p element.
The text will be aligned to the left of the p element.