Computer Science, asked by Raghavkanojia2005, 8 months ago

Q2. Write the HTML code for the following to appear one after the other:
1. A small heading with the words, “We are Proud to Present”.
2. A horizontal rule across the page.
3. A large heading with the one word “Orbit”
4. A medium sized heading with the words “The Geometric Juggler”.
5. Another Horizontal Rule.

please make the coding
answer in detail

Answers

Answered by himabarbiedoll
32

Answer:

<html>

<head>

<title>Index</title>

</head>

<body>

<h4>we are proud to present</h4>

<hr/>

<h1>Orbit</h1>

<hr/>

<h3>The geometric juggler</h3>

<hr/>

</body>

</html>

<html>

<head>

<title>Favorite Hero</title>

</head>

<body bgcolor="green">

<h1><center><font color="red" face="Comic Sans MS">Steve Jobs</center></h1>

<hr/></font>

<p> Steve Jobs was an American businessman, an early proponent of personal computers (PCs) and a cultural icon. He’s best known for his two wildly successful tenures as co-founder and CEO of Apple, as well as his time as CEO of Pixar Animation Studios. When Jobs died, at the age of 56 in 2011, he had a net worth of $10.2 billion.</p>

</body>

</html>

HOPE THIS HELPS YOU AND PLZ FOLLOW ME FOR MORE INFORMATION AND MARK ME AS BRAINLIEST

Answered by qwvilla
6

The HTML code for the following will appear as :

<html>

<head><title>example</title></head>

<body>

<h3>We are Proud to Present</h3>

<hr />

<h1>Orbit</h1>

<h2>The Geometric Juggler</h2>

<hr />

</body>

</html>

where we know that,

  • HTML is the abbreviation for Hyper Text Markup Language.

The <HTML> tag identifies the document as an HTML document. An HTML document begins with <HTML> and ends with </HTML>

  • The HR tag is used for draw a horizontal line.
  • <TITLE> tag is used to address a title for a document.

#SPJ3

Similar questions