0% found this document useful (0 votes)
23 views4 pages

Easter Projects s2

The document provides a series of HTML coding tasks, including adding tooltips, setting image sizes, creating links, specifying alternate text, and formatting headings and paragraphs. It emphasizes proper HTML structure, including the use of end tags and horizontal rules. Additionally, it includes instructions for adding line breaks and cleaning up the document for better readability.

Uploaded by

Jana Kreidy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views4 pages

Easter Projects s2

The document provides a series of HTML coding tasks, including adding tooltips, setting image sizes, creating links, specifying alternate text, and formatting headings and paragraphs. It emphasizes proper HTML structure, including the use of end tags and horizontal rules. Additionally, it includes instructions for adding line breaks and cleaning up the document for better readability.

Uploaded by

Jana Kreidy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

1.

Add a "tooltip" to the paragraph below with the text "HTML":

title
<p ="HTML">HTML is a web developer's language.</p>

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

250 400
<img src="HTML.jpg" width=" " height=" ">

3. Make the element below into a link that goes to


"https://www.Google.com":

href=
<a "https://www.Google.com">This is a link</a>

4. Specify an alternate text for the image:

alt
<img src="HTML.png" ="HTML Logo">

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

<h1>london</h1>

<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>
6. Add six headings to the document with the text "Hello":

<html>
<body>
<h1>hello</h1>

<h2>hello</h2>

<h3>hello</h3>

<h4>hello</h4>

<h5>hello</h5>

<h6>hello</h6>

</body>
</html>

7. 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.

<h1> </h1>

Universal Studios Presents

<h2> </h2>

Jurassic Park

<h3> </h3>

About

<p>

On the Island of Isla Nublar, a new park has been


built: Jurassic Park is a theme park of cloned
</p>

dinosaurs!!

8. Use the correct HTML tag to add a paragraph with the text "Hello World!":

<html>
<body>
<p>Hello World!</p>

</body>
</html>

9. Clean up this document with proper end tags :

</h1>
<h1>This is a Heading

</p>
<p>This is a paragraph.

10. Add a horizontal rule between the heading and the paragraph:

<h1>London</h1>

<hr>

<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>

11. Add a line break in the middle of the paragraph:


<br>
<p>My Bonnie lies over the ocean.</p>

Thank you!

You might also like