29
loading...
This website collects cookies to deliver better user experience
Binary Code | Value |
---|---|
1 | 1 |
10 | 2 |
11 | 3 |
100 | 4 |
We do not consider HTML as a programming languages. We consider it as a structured language because it is used to create structure.
<!DOCTYPE html>
<html>
<head>
<title>title of the page</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
< >
know as tags. Tags are like a block. Which used to define an element or make space for an element in the document. We have lot's of tags to create specific elements.</ >
. This define the end of the block.<html>
</html>
<html>
<head>
</head>
</html>
<head>
tag inside our <html></html>
tag and we are closing it by </head>
.<head>
tag is used to define the head portion of the document which contains information related to the document.<html>
<head>
<title>title of the page</title>
</head>
</html>
<body>
hello world
</body>
<body>
tag is used to define web page body. You can see, I typed hello world
inside <body>
tag. Remember to close all these tags.