Computer Science, asked by natasha561, 10 months ago

Correct the following codes and rewrite correct code.

a) <HTML>
<BODY>
<TITLE> My first program </TITLE>
</BODY>
<HEAD>
<FONT LENGTH 4>
love to learn HTML
</HEAD>
<HTML>

Or

b) <HTML>
<HEAD>
<TITTLE> Computers
</HEAD>
<P align="Center">
<H1> HTML </H1>
HTML is very interesting. It is a wonderful language for web pages.
</BODY>
</HTML>

Plz help me i will chose the brainlist.....​

Answers

Answered by BrainlystarRohan
3

Answer:

&lt;p style="color:cyan;font-family:cursive;background:black;font size:525px;"&gt; HTML IS MY LIFE BUDDY

Answered by TheArkhamKnight
1

Answer:

a.

<!DOCTYPE html>

<html>

   <head>

       <title>My first program</title>

   </head>

   <body>

           <p style="font-size: 4px;">I love to learn HTML</p>

   </body>

</html>

b.

<!DOCTYPE html>

<html>

   <head>

       <title>Computers</title>

   </head>

   <body>

       <h1>HTML</h1>

       <p style="align-self: center;">HTML is very interesting. It is a wonderful language for web pages.</p>

   </body>

</html>

Explanation:

Similar questions