Easter Projects s2
Easter Projects s2
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=" ">
href=
<a "https://www.Google.com">This is a link</a>
alt
<img src="HTML.png" ="HTML Logo">
5. Use the correct HTML tag to add a heading with the text "London":
<h1>london</h1>
<html>
<body>
<h1>hello</h1>
<h2>hello</h2>
<h3>hello</h3>
<h4>hello</h4>
<h5>hello</h5>
<h6>hello</h6>
</body>
</html>
<h1> </h1>
<h2> </h2>
Jurassic Park
<h3> </h3>
About
<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>
</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>
Thank you!