Skip to content
Forum Navigation
You need to log in to create posts and topics.

Basic HTML Tags

HTML Basics:

<....> Opening Tag
</.....> Closing Tag
Every HTML page has must these Tags:

 

1) <html>
2) <head>  </head>
3) <body>  </body>
4) </html>

Now Open Notepad:
Copy this Code Paste In Notepad:
Now Save as:
Save as first page.html

<html>
<head>
<title>Page Title</title>
</head>

<body>
<h1>Write Your Name Here</h1>
<p>Now give a Short Description About yourself</p>
</body>
</html>