NEW
Font size
WorksheetsSemester Test G10 Q4 (HTML)
Total questions: 60
Worksheet time: 30mins
<h> is stand for
Header Tag
Headline Tag
Half of a tag
Closing header tag
where you can find </html> in tag html?
Found after </h1>
Found after </style>
Found after </body>
Found at bottom of written code
What does a closing tag look like?
< >
<\ >
</ >
<< >>
What is the difference between <h1> and <h2>?
<h1> is larger in size than <h2>
<h2> is larger in size than <h1>
both are the same size but different headings
none of the above
Which tag would you use to create a hyperlink?
<a href>
<img src>
<br>
<link>
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
How would you write a hyperlink to webpage.com?
<a>http://www.webpage.com</a>
<a name="http://www.webpage.com">webpage.com</a>
<a href="http://www.webpage.com">webpage</a>
<a url="http://www.webpage.com">webpage.com</a>
The part of an HTML document that includes the content seen in a web page is called
Content block
Head Block
Head
Body
All content that will be visible in a web page must be added between these tags:
<head> </head>
<body> </body>
<html> </html>
<p> </p>
The largest size heading tag and is often used to create the main heading of a web page.
<h6> </h6>
<h5> </h5>
<h2> </h2>
<h1> </h1>
Which is the correct tag to change the colour of Hello to RED?
font color="red">Hello</font>
<font color="red">hello//</font>
<font color="Pink">This is some text!</font>
<font colour="red">This is some text!</font>
Which is NOT a browser?
Safari
Mozilla Firefox
Internet Explorer
What should a HTML web page end with?
</end>
<head>
</html>
</body>
What does this tag stands for <b> ?
big
bold
broad
bright
What is missing from this basic HTML structure?
<!DOCTYPE html>
<html>
<body>
</body>
</html>
<div></div>
<img></img>
<title></title>
<head></head>
What is the correct HTML instruction to insert a line break?
<lb>
<br>
<hr>
<break>
This tag defines a heading at the smallest size.
<h6>
<h2>
<h7>
<h1>
Match the correct end tag...
<p>
<p/>
<\p>
</p>
</P>
<p> is a _______ tag.
image
paragraph
filename
image
src attribute and then displays it.<th></th> is the code for .....
a table row
a table column
a table header
Thanos
src attribute in an image tag means what?
Source of the image
Name of the image
Description of the image
Not used with image tag
The <tr> tag is used to define a
coloum
table
data
row
how to create a table
<td>
</tc>
<table>
<tr>
<th></th> is the code for .....
a table row
a table column
a table header
Thanos
When working with color codes RGB stands for...
Green Red Purple
Red Great Blue
Red Green Blue
Blue Green Raspberry
Group of webpages is called _____.
Website
Web browser
Web Search engine
None of the above
What HTML code is used to center the words on the page when the coding starts on the left margin?
right-align;
<center></center>
left-align;
<middle></middle>
th
one cell in a row of headers
one data cell
one row of headers
one column of headers
tr
one column on the right
one cell in a table
one row of anything
one column of anything
td
one cell in a header
one column of a row
one row of a column
one data cell in a row
td and th
can appear only in rows
cannot be used in rows
can be used outside of rows
can be used outside of columns
colspan
can only be used in caption
can be used only in td
can be used only in td or th
be be used only in tr
rowspan
can only be used in caption
can be used only in td
can be used only in td or th
be be used only in tr
rowspan="2"
one td or th spans 2 columns
all td or th spans 2 columns
one td or th spans 2 rows
one tr spans 2 rows
Marquee is a tag in HTML to
mark the list of items to maintain in queue
Mark the text so that it is hidden in browser
Display text with scrolling effect
None of above
How much Row and Column on this table?
2-row dan 4-Column
3-row dan 4-column
4-row dan 3-column
4-row dan 4-column
Which of the following tags is used to make a portion of text italic in HTML?
<italic>
<style="i">
<i>
<style="italic">
In HTML a color can be specified by using what?
HEX value
Color name
RGB value
All of these
Creates a numbered list (Ordered List)
<ul>
<li>
<li>
</ul>
<ol>
<li>
<li>
</ol>
<li>
</li>
<p>
<li>
<li>
</p>
Creates a bulleted list (Unordered List)
<ul>
<li>
<li>
</ul>
<ol>
<li>
<li>
</ol>
<li>
</li>
<p>
<li>
<li>
</p>
Which list tag would you use for an ordered list
<h1></h1>
<ol></ol>
<ul></ul>
<a></a>
Which creates a bulleted list?
<ol>
<li>
<ul>
<bl>
What correction needs to be made in the code
line 8 - <p> </p> tags needed
line 8 - <li> </li> tags needed
line 8 - <h6> </h6> tags needed
line 8 <par> </par> tags needed
Untuk membuat tampilan seperti digambar, script yang digunakan adalah
<ul type="square">
<li><i>Satu</i></li>
<li>Dua</li>
<li>Tiga</li>
</ul>
<ul type="square">
<li>Satu</li>
<li>Dua</li>
<li>Tiga</li>
</ul>
<ol type="square">
<li><i>Satu</i></li>
<li>Dua</li>
<li>Tiga</li>
</ol>
<ol type="square">
<li>Satu</li>
<li>Dua</li>
<li>Tiga</li>
</ol>
<ul type="square">
<li><i>Satu</i>
<li>Dua
<li>Tiga
</ul>
