How to write HTML code??

Tutorial

This is basic structure of HTML code

<html>
<head>
<title> </title>
</head>
<body>
</body>

</html> 

The HTML code begins with <html> and ends with </html> .

And the title of your document is between <head> & </head> using<title> & </title> tag.

 The visible part of HTML document is between <body> & </body> tag.

Example

<html>
<head>
<title>TJ5 Server</title>
</head>
<body>
Welcome this is my first paragraph
</body>
</html>

Output




In next article we will learn about different types of tags in HTML.

If it is helpful for you then do let me know in comment section below👇

Tejas Dhodi👦
Tue, 28June 2022

Comments