Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

Schools Division Office

Lagro High School


Greater Lagro Subdivision, Quezon City, District 5

Catch Up – Friday Activity


C.N. SCORE
Name: ______________________________________Date: ______________________
Grade/Section: _______________________________Teacher: Mr. Karl Angelo L. Ogardo

1. HTML elements are surrounded by a specific type of brackets, which one?

p This is a paragraph. /p

2. Add a list item with the text "Coffee" inside the <ul>.

<ul>
Coffee
</ul>

3. Insert the correct end tag for the HTML heading.

<h1>This is a heading

4. Insert the correct end tags in this HTML docuement:

<html>
<body>
<h4>This is a heading
<p>This is a paragraph.

5. Add an attribute that will put the paragraph in the center>

<p = W3Schools is a web developer's site.</p>

6. Set the size of the image to 250 pixels wide and 400 pixels tall.

<img src="w3schools.jpg" width= height= >


7.Finish the HTML code to make an unordered list.

<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>

8. Use the correct HTML tag to add a heading with the text "London".

<p>London is the capital city of England. It is the most populous city


in the United Kingdom, with a metropolitan area of over 13 million
inhabitants.</p>

9. Add six headings to the document with the text "Hello".

Start with the most important heading (the largest) and end with the least important
heading (the smallest).

<html>
<body>

</body>
</html>
10. Mark up the text with appropriate tags:

"Universal Studios Presents" is the most important heading. "Jurassic Park" is the next
most important heading. "About" is the third most important heading.

The last sentence is just a paragraph.

Universal Studios Presents

Jurassic Park

About

On the Island of Isla Nublar, a new park has been built: Jurassic
Park is a theme park of cloned dinosaurs!!

11. Use the correct HTML attribute to display uppercase roman numbers.

<ol >
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

12. Use the correct HTML to make the image become a link to "default.html".

<img src="smiley.gif">

13. Add a table row with two table headers.

The two table headers should have the value "Name" and "Age".

<table>

<tr>
<td>Jill Smith</td>
<td>50</td>
</tr>
</table>

14. Use the correct HTML attribute to make the second TH element span two rows.

<table>
<tr>
<th>Name</th>
<td>Jill Smith</td>
</tr>
<tr>
<th >Phone</th>
<td>555-77854</td>
</tr>
<tr>
<td>555-77854</td>
</tr>
</table>

15. Add a table row at the end of the table, with two table cells.

The two table cells should have the value "Eve Jackson" and "94".

<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Jill Smith</td>
<td>50</td>
</tr>

</table>

You might also like