Computer Science, asked by sanajazarida, 6 months ago

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

pls help intellegent people........​

Answers

Answered by Anonymous
86

Required HTML Code :

_____________________

<!Doctype html>

<html>

<head>

<title> My Favourite Monument</title>

</head>

<body>

<h1>My Favourite Monument</h1>

<p style="text-align:Center;"><img src="Insert desired link in the tag" width="320" height="240"<img></p>

<br>

This is the 1<sup>st</sup> monument I fell in love with

</body>

</html>

_____________________

★ See the attachment for the output of this code.

Extra Brainly Knowledge :

Some basic tags of HTML :

  • <!Doctype> tag is defines the document type.

  • <html> tag defines the HTML document.

  • <head> tag defines the information of the document.

  • <title> tag defines the title of the document.

  • <body> tag defines the body of the document.

  • <h1> to <h6> tag defines the headings if HTML document.

  • <p> tag defines the paragraph.

  • <br> tag defines the insert a single line break.

  • <hr> tag defines the thematic break or to sepreat content.

  • <!--...--> tag defines the insert comments.
Attachments:
Answered by xXxKitKatxXx
36

Answer:

Explanation:

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.

Similar questions