HTML Basics

HTML BLOCK 

PART  1.

The basic html (hyper text markup language) is a simple and basic language to create a web site . is a basic programing language that use to create a web site structure such as tables contents links images and other simple words language that is use to create a web site structure. 

BASIC BODY IN ANY IDE:

syntax:

<!DOCTYPE html>
<html Lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
</body>
</html>
  • At the beginning the html which shows the normal term that the text is document type .which tells the browser that this  html file is document type. And the code will use is document type.
  • Further more the html tag is the basic tag in which we use the whole programing . and is starts with symbol <html>and ends with forward slash</html>.
  • The basic meta tag is use to denote the interesting thing that helps us in interfacing an the normality of the other side to be seems to be different. But its never done it like we use in our codes and which is further processes in the write time to be denote in further .
  • The other head and body like the same tags with there name is given in the write time to be continue like the html tags to close and open hence the head use use to given the basic head of the tag while the other body tag include all the basic tags and attributes which can be use to built any website . 

Comments