Computer Science, asked by devil003indianhacker, 11 months ago

write the html command to display the following in yr webpage x2+y2

Answers

Answered by rohitpatiballa
53

Type Everything desired till body in body tag

type x<sup>2</sup>+y<sup>2</sup>

Answered by AskewTronics
20

The HTML code for the above question is as follows:

Explanation:

<HTML> <! –– HTML OPEN TAG ––>

<HEAD>  <! –– HEAD OPEN TAG ––>

<TITLE> <! –– TITLE OPEN TAG ––>

PRINT <! –– HEADING FOR THE WEB PAGE ––>

</TITLE> <! –– HTML CLOSE TAG ––>  

</HEAD>  <! –– HEAD CLOSE TAG ––>

<BODY>  <! –– BODY OPEN TAG ––>

x2+y2    <! –– WRITE THE CONTENT WHICH IS ASKED IN THE QUESTION ––>

</BODY>  <! –– BODY CLOSE TAG ––>

</HTML>  <! –– HTML CLOSE TAG ––>

Output:

  • The above code display x2+y2 on the web page.

Code Explanation:

  • The above code displays the x2+y2 on the web page because the HTML code renders a content that is described in the body tag and makes the heading of the web page which is defined in the head tag.

Learn More:

  • HTML : https://brainly.in/question/8643368
  • HTML : https://brainly.in/question/4924558

Similar questions