html basic tag head body meta

 


HTML is an important part of web design. Now let's look at some of the HTML tags that have to be written in each HTML code. <html>, <head>, <body> These tags are called the life of HTML, because it is not possible to write any HTML code without them. Each HTML tag has a start tag and an end tag. HTML tags are given at the beginning and end of the tag.

<! DOCTYPE html> This means this file is an html file.

<html> This means that html code writing has started from here.

<head> This indicates the heading of the coding.

<body> indicates the original body with it.

They all have close tags </body>, <head>, </html>

Let's look at an example: 


<! DOCTYPE html>

<html>

<head>

<title> Webdesign Test </title>

<meta name = "viewport" content = "initial-scale = 1, width = 240">

</head>

<body>

<font color = "blueViolet">

Webdesign Testing output .......

</font>

</body>

</html>


Click here to learn the basics of HTML.

Html tag syntax

Layout Design

Post a Comment

3 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.