Basic Structure of a Website:- Hi friends, in this I will tell you about the basic structure of a website In the Html Tutorial. let go and start...
Introduction
Html is an easy computer language to learn to programming and to increase creativity.
Basic Structure of a Website
This is our main topic, first, we have to learn comment tag, what is comment tag you know if we comment on creator video to our experience, tips to make their next video, and many more...
This is the comment tag to comment on the function, error, interesting point, and design scheme of our website.
If we send the code to the Friend they can understand what you code in your file. I hope you are clear about what is comment tag?
Source Code
<!-- This is a comment tag to note the file --><!-- This is DOCTYPE --><!DOCTYPE html> <!--this is we call brrowser to file is html --><!-- This is Html Tag --><html lang="en"><!-- tag always have open tag and close tag --><!-- head tag is start from open tag --><head><!-- head can have only non visual part --><meta charset="UTF-8"> <!-- meta mean information of document--><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>HELLO</title> <!-- This is Title Tag to title our WebPage --></head><!-- head tag is start from open tag --><body><!-- body tag have only visual part -->Hello world</body></html>I hope you have understood Better Forever
Post a Comment