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
3
Answer:
Answered by
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