Write an HTML code keeping the following in mind--
1."My favorite Monument " should be the heading size 1
2.It should include an image of the same ,for example Tajmahal.jpg
(use tag)
3.After the picture also include the statement "This is the 1st monument I fell in love with", where st of 1st should be a superscript
Answers
Answered by
30
Required HTML Code :
<!Doctype html>
<head>
<title>My favourite Monument</title>
</head>
<body>
<h1>My favourite Monument</h1>
<br>
<centre><img src="Insert desired link in the tags.jpg" width="300" height="200"</centre>
<br>
<p style=color:red>This is the 1<sup>st</sup> monument i fell in love with</p>
</body>
</html>
For output of this code see the attachment.
Extra Brainly Knowledge :
Know about HTML :
⋆ HTML stands for Hyper text markup language.
⋆ HTML is the standard markup language.
⋆ HTML is used for creating web pages.
⋆ HTML consist of a series elements.
⋆ HTML elements tell the browser, how to display the content.
Some important tags in HTML :
- <!Doctype> tag defines the document type.
- <html> tag defines the HTML document.
- <head> tag defines the information for the document.
- <title> tag defines the title of the document.
- <body> tag is defines the body of the document.
- <h1> tag is used for HTML headings.
- <p> tag us used for paragraph.
- <br> tag is used for insert a line break.
- <b> tag is used for bold text.
- <u> tag is used for underline text.
- <i> tag is used for Italic text.
Attachments:
Similar questions