INTRODUCTIO TO HTML: Basics

Hello guys, you have all said well. But i think for a beginner who knows nothing. He/She can try out this little code and see.

<Html>
<head>
<title>My First Html Page</title>
</head>

<body>
<hr>
<li>
<h3>HOME</h3>
<h3>CONTACT</h3>
<h3>ABOUT ME</h3>
</li>
</body>
</html>

GoodLuck!
goldenwaters
 

PixelPusher

Super Moderator
Staff member
Hello guys, you have all said well. But i think for a beginner who knows nothing. He/She can try out this little code and see....

I admire the effort here, but your code is invalid. You cannot open a list item (li) without it being contained in a list (ul, ol). The correct markup would be written like so:

HTML:
<html>
<head>
<title>My First Html Page</title>
</head>
<body>
   <hr/>
   <ul>
      <li>
         <h3>HOME</h3></li>
      <li>
         <h3>CONTACT</h3></li>
      <li>
         <h3>ABOUT ME</h3></li>
   </ul>
</body>
</html>
 
Top