Font size
WorksheetsIBP CAT 2 - DICT(MOD3)24M
Total questions: 24
Worksheet time: 4mins
What does HTML stand for?
Hypertext Markup Language
Hyper Transfer Making Language
Hypertext Making Language
Hyper Transfer Markup Language
Choose the correct HTML tag to make a text italic
<it>
<i>
<italic>
<em>
Choose the correct HTML tag to make a text bold
<strong>
<em>
<bold>
<b>
What is the correct HTML for inserting a background image?
<body background="background.gif">
<background img="background.gif">
<body style="background-image:url(background.gif)">
<body style= background:"background.gif">
What is the correct HTML for creating a hyperlink?
What is the correct HTML tag for inserting a line break?
<break>
<span>
<div>
<br>
What does CSS stand for?
Cascading Style Sheets
Creative Style Sheets
Colorful Style Sheets
Computer Style Sheets
What does CSS do?
Styles web elements
Creates interactivity with web elements
Defines web element
Makes webpages
Why use external CSS rules?
Control multiple HTML pages
Organize your code
Make web pages load faster
All
Is this an example of good website design?
Yes
No
A Website Designer is in which Career Cluster?
STEM
Informational Technology
Arts and Audio Visual Technology and Communications
Marketing
Is this an example of good website design?
YES
NO
Use the correct HTML tag to add a paragraph with the text "Hello World!".
<p>Hello World!<p>
<p>Hello World!</p>
<p Hello World!</p>
<p>Hello World! /p>
Choose the correct tag for the largest heading:
heading
head
h1
h6
Are HTML tables coded in rows or columns?
ROWS
COLUMNS
BOTH
NEITHER
What is the correct HTML tag for creating an unordered list?
<ul>
<ol>
<li>
<list>
Which CSS property is used to change the text color of an element?
font-color
text-color
color
text-style
What is the correct way to comment in HTML?
<!-- This is a comment -->
// This is a comment //
/* This is a comment */
# This is a comment #
What is the correct way to include an external JavaScript file in HTML?
<script src="script.js"></script>
<js src="script.js"></js>
<link href="script.js"></link>
<javascript src="script.js"></javascript>
Which HTML tag is used to define an image?
<img>
<image>
<picture>
<imgsrc>
What is the correct CSS property to change the font size of text?
font-size
text-size
size
font-style
Which HTML tag is used to create a hyperlink?
<a>
<link>
<href>
<url>
What is the correct CSS property to change the background color of an element?
background-color
color
text-color
background-style
What is the correct way to include an external CSS file in HTML?
<link rel="stylesheet" href="styles.css">
<style src="styles.css"></style>
<css href="styles.css"></css>
<external-css src="styles.css"></external-css>
