HTML Home
HTML Introduction
HTML Editors
HTML TAGS
HTML Paragraph
HTML Heading
HTML with CSS
HTML Text Formatting
HTML Quotation
HTML Comment
HTML Links
HTML Images
HTML Audio
HTML Video
HTML Tables
HTML Lists
HTML Class
HTML Iframes
HTML File Path
HTML Scripts
HTML Head Section
HTML Structure
HTML Symbols
HTML Character Set
HTML Entity
HTML Color Codes
HTML Forms
HTML Forms
HTML Form Elements
HTML5 Form Element
HTML Form Attributes
HTML Others
Why important HTML?
*** Because HTML is a mother programming language for web design and development.
*** Because HTML is a basic structure of a website.
*** Because HTML is a catch all website elements.
Basic Structure of HTML
<!DOCTYPE html> <html lang="en"> <head> <title>HTML Tutorials</title> </head> <body> <h1>HTML Heading</h1> <p>HTML Paragraph</p> </body> </html>
Double Click to Select Code
Define of HTML structure and Tag
<!DOCTYPE html> - Define this document are HTML5
<html lang="en"> - This is Mother HTML tag and lagn means this page main language is English.
<head> - In this area you can define your Meta Options.
<title> - In this area you can define your website TITLE.
Sample meta options (How to declare html meta option?)
<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="author" content="domainname.com"> <meta name="robots" content="index, follow"/> <meta name="googlebot" content="index, follow"> <meta name="keyword" content="your keyword here"> <meta name="description" content="your description here. Description cann't count google thier search Engine.">
<body> - In this area you can define your website all content like TEXT, IMGAE, AUDIO, VIDEO and more.
How to declare HTML Tag?
HTML tag declare with <>here tag name</>
Sample HTML Tag
<h1></h1> Heading tag <h6></h6> <p></p> Paragraph tag <table></table> Table tag <tr></tr> Table row tag <td></td> Table column tag
There are 6 types HTML versions like: HTML, HTML 2.0, HTML 3.2, HTML 4.01, XHTML, HTML5