Ukuran huruf
Lembar kerjaUnderstanding HTML Elements Quiz
Total soal: 50
Worksheet time: 25mins
What is this symbol(s) called: </>
A closing tag
A square
An opening tag
An arrow
Which of the following codes would create a horizontal line
<br>
<h1></h1>
<hr>
<p>
<th></th> is the code for .....
a table row
a table column
a table header
Thanos
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
What is the correct HTML element for inserting a line break?
<lb>
<BREAK>
<br>
<break>
Which list tag would you use for an ordered list
<h1></h1>
<ol></ol>
<ul></ul>
<a></a>
How can you make a list that has no particular order?
<ol> </ol>
<ul> </ul>
<ol> <li>
<li> </ul
Type in the attribute you would use to add the lines inside and around a table with a width of 3.
(a)
used to display information in rows and column
semantic element
HTML tag
Table
Text Alignment
A ____ is a vertical line of information in a table.
Column
Grid
The Tags "<a href= </a> tells the code to do what?
Change the color
Add a link
Change the size of font
Change the font
This should be at the top of every web page we write.
<head>
<title>
<!DOCTYPE html>
<html>
This is where content that appears on the screen of a web page goes.
<head>
<title>
<p>
<body>
What tag is used to separate text into paragraphs.
<body>
<a>
<p>
<b>
Which tag is used to insert an image?
<pic>
<img>
<a>
<src>
Which attribute is used in conjunction with the <a> tag for defining the location of a hyperlink?
src
href
style
h1
Which attribute is used in conjunction with the <img> tag for defining the location of an image?
src
href
style
h1
Which of the following header tags would produce the largest text?
<h2>
<h4>
<h6>
<h9000>
Which tag is used to create a bulleted list?
<ol>
<li>
<ul>
<bl>
Which tag is required for every item that is included in any kind of list?
<b>
<a>
<li>
<td>
Which tag is required for every item that is included in a table?
<b>
<a>
<li>
<td>
Which tag is used to start a table?
<table>
<tb>
<t>
<td>
Use this tag to start a new horizontal row of items in your table.
<table>
<tr>
<td>
<li>
Which of the following tags does NOT have a closing tag?
<a>
<b>
<br>
<p>
Why won't the following anchor tag work?
<a href=https://www.google.com/>click here</a>
The attribute should be ref, not href
The URL is missing quotation marks
There is no anchor tag in the code
The href is missing a closing tag
Which code is used to begin a new line within a paragraph of text on a webpage?
<em>
<span>
Which tag could be used to apply a CSS background color to a word in a paragraph?
<p>
<h2>
Which of the following tags should contain the copyright information at the bottom of a webpage?
<body>
<footer>
<html>
Which of the following is the correct HTML syntax for inserting an image
<img>apple.jpg</img>
<img src="apple.jpg">
<image src="apple.jpg">
<img ="apple.jpg">
Erin is building a website for her school project. She is using a language to structure and present content on the web. What is the name of this language that Erin is using?
HyperText Markup Language
HyperText Manipulation Language
HyperText Modeling Language
HyperText Management Language
Jocelyn is creating a webpage for her school project. She wants to define a paragraph of text. Which HTML tag should she use?
<h2>
<p> </p>
<header>
{body}
Karissa is creating a website for her school project. What is the purpose of the <a href=" "> </a> tag she is using in her HTML code?
To create a hyperlink
To display an image
To format text as bold
To define a paragraph of text
Joaquin is creating a website for his photography portfolio. He wants to display his photos on the website. Which HTML tag should he use?
<kodak>
<add color>
<photo>
<img src=" ">
Lance is building a website for his school project. He wants to list out the names of his team members without any specific order. Which HTML tag should he use?
<table>
<ul> </ul>
<list> </list>
<ol>
Oscar is creating a website for his school project. He wants to list the names of his team members in a specific order. Which HTML tag should he use?
To create an ordered list, he should use the
tag <ol> </ol>
To create an unordered list, he should use the
tag <ul> </ul>
To display a video, he should use the tag <video>.
To create a table, he should use the tag <table>.
Ryan is creating a website for his school project. He wants to add a table to one of the pages. What is the purpose of the <tr> tag that Ryan should use?
To define a container for a table row/ a single row.
To define a tab
To create a hyperlink
To define a table color
In this code <img src
What does src stand for?
sauce
source
saucey-sauce
saucer
<a href="https://www.picturelocation"> Click me </a>
Is this coded correctly?
Yes
No
<a herf="https://www.picturelocation"> Click me </a>
Is this coded correctly?
Yes
No, they wrote herf
<a href+"https://www.picturelocation"> Click me </a>
What is wrong with this code?
It should be
<a href=
It should be
<a href-
It should be
<a href/
Which tag is used to link web pages to each other?
<link> </link>
<hyperlink> </hyperlink>
<a href = "url of site"> </a>
<body> </body>
Which of the following is the correct HTML syntax for inserting an image
<img>apple.jpg</img>
<img src="apple.jpg">
<image src="apple.jpg">
<img ="apple.jpg">
Which code below is correct for a hyperlink
<a>
"https://google.com"
Click Me
</a>
<a>Click Me>
"https://google.com"
</a>
<a herf="https://google.com">
Click Me
</a>
<a href="https://google.com">
Click Me
</a>
Which tag is required for every item that is included in any kind of list?
<b>
<a>
<li>
<td>
Which of the following codes would create a horizontal line
<br>
<h1></h1>
<hr>
<p>
