6/21/22

HTML Structure

 Saving your HTML file

All files are saved with extensions which helps to determine how they are ran.

HTML files are saved with .html


The  Basic Structure of  HTML

As all programming languages, HTML has a basic structure which helps in setting up sections of a web page. 




<!DOCTYPE html>

Used to state the file type.


<html>

It is the starting point of the html file


<head>

This tag holds some of the essential contents of the document. It contains the <title>  tag which contains the title of the document.

<meta> tag which hold backend information of the site which the browser reads.

And many others.


<body>

This is the part of the document that contains the features which would be displayed on the browser.


Blog Archive