Monday, March 15, 2021

HTML(5) Tutorial | The easiest way to learn HTML with Examples

By The Help Of HTML, you can create a Website. HTML Stands For Hyper Text Markup Language. This Language is a set of markup tags HTML Files or Documents are defined by HTML tags and Each Tag Define Different document Content.By The Help of This Tutorial, we will learn everything about HTML. It Is Very easy to learn - You will enjoy it.

HTML 5 Tutorial
HTML Tutorial Examples in Every Chapter
HTML CODE EXAMPLE : A Small HTML Document




OUTPUT







   Example Explained   
The DOCTYPE declaration Describes the document type, That It Is an HTML Document

The text between <html> and </html> defines an HTML document . When We Create A HTML Document after  DOCTYPE declaration we Will Put this <html> start tag and end tag </html> between this two tag we will write our all Code.

The text between <head> and </head> tags provides us information about the document,it Holds <title> and </title> tags , The text between <title> and </title> provides a title for the document, that display on top Of the Browser.

The text between <body> and </body> describes the visible page content,we will put our all content Here,and this tags holds all other tags such as <h1> and </h1> <p> and </p> and many more

According to Example we use two tags <h1>  </h1>   and <p>  </p> .By The Help Of This Tag , a web browser can display a document with a heading and a paragraph .

The text between <h1> and </h1> describes a heading

The text between <p> and </p> describes paragraph

Here we Use a Large Heading But You Can Use Total 6 Different Type Heading Size By Using Below Tags, Even You Will Customize Your Heading As You Like , We Will learn Heading Customization In CSS Chapter

           <h1>  </h1>   

           <h2>  </h2> 

           <h3>  </h3>   

           <h4>  </h4>   

           <h5>  </h5>   

           <h6>  </h6>