- HTML Basics
- HTML Home
- HTML Basics
- HTML Document Structure
- HTML Data Types
- HTML Attributes
- HTML Fonts
- HTML Headings
- HTML Character Entities
- HTML Horizontal Line
- HTML Line Break
- HTML Paragraph
- HTML Citation Definition
- HTML Quotations
- HTML Comments
- HTML Styles
- HTML Formatting
- HTML CSS
- HTML Tags
- HTML Basic Tags
- HTML All Tags
- HTML Root Tags
- HTML Metadata Tags
- HTML Section Tags
- HTML Head Heading Tags
- HTML Flow Tags
- HTML Phrasing Tags
- HTML Embedded Tags
- HTML Interactive Tags
- HTML Meta Tags
- HTML Texts
- HTML Text Formatting
- HTML Physical Style Text
- HTML Logical Style Text
- HTML Organizing Text
- HTML Arranging Text
- HTML Displaying Lists
- HTML List
- HTML Links Tables
- HTML Links URLs
- HTML Links
- HTML URL Encode
- HTML Tables
- HTML Images Colors
- HTML Images Colors
- HTML Images
- HTML Color Codes
- HTML Canvas
- HTML Backgrounds
- HTML Forms
- HTML Forms
- HTML Form Tag
- HTML Input Tag
- HTML Button Tag
- HTML Multiple-Choice
- HTML Select Tag
- HTML Option Tag
- HTML Optgroup Tag
- HTML Textarea Label
- HTML Fieldset Legend
- HTML Datalist Tag
- HTML Keygen Tag
- HTML Output Tag
- HTML Progress Tag
- HTML Meter Tag
- HTML Submit Form
- HTML enctype Attribute
- HTML action Attribute
- HTML Method Attribute
- HTML Get Method
- HTML Post Method
- HTML Interactive
- HTML Interactive Web
- HTML Details Summary
- HTML Menu Tag
- HTML Command Tag
- HTML KBD Tag
- HTML Time Tag
- HTML Multimedia
- HTML Multimedia
- HTML Multimedia Tags
- HTML Audio Video
- HTML Embedded Multimedia
- HTML EMBED Tag
- HTML OBJECT Tag
- HTML FIGURE FIGCAPTION
- HTML Advance
- HTML Blocks
- HTML Classes
- HTML Iframes
- HTML JavaScript
- HTML Layouts
- HTML Responsive
- HTML Test
- HTML Online Test
- Give Online Test
- All Test List
HTML Tutorial
This tutorial will teach you all about HTML from very basic for beginner to advance.
What is HTML ?
HTML (in long, Hypertext Markup Language) is a markup language used to create Web pages. With HTML, you can make your own Website.
A Brief History of HTML
HTML is developed and maintained by World Wide Web (W3C) consortium.
What is hyper in HTML ?
In Hypertext Markup Language (HTML), the term hyper signifies the navigation from one location to another in a non-linear fashion. That is, clicking a hypertext on a Web page takes you to the relevant page on Internet or Web site, which is not necessarily the next page on the Web site.
What HTML defines ?
HTML defines the content, i.e., the structure and layout of a Web page with the help of tags and attributes. An element includes start and end tags, with some content inside/within them, and attributes provide additional information (such as alignment of element on a Web page) about the elements.
Here is a simple HTML example.
<!DOCTYPE HTML> <html> <head> <title>HTML Tutorial</title> </head> <body> <h1>HTML Tutorial</h1> <p>This is <i>tutorial</i> on <b>HTML</b>.</p> </body> </html>
Open your text editor, and copy then paste the above HTML code in your text editor. Save the file with extension .html like myfile.html, and open it in your browser, then here is the output produced in the browser of above HTML document/code:

Here is another example:
<!DOCTYPE HTML> <html> <head> <title>HTML Tutorial</title> <style> body{background-color:silver;} h1{color:green;} h2{color:blue;} p{color:red;} </style> </head> <body> <h1>HTML Tutorial</h1> <p>This is <i>tutorial</i> on <b>HTML</b>.</p> </body> </html>
If you try to open it into your browser, you will watch this output:

You will learn all about HTML in this tutorial series.
Audience
This tutorial is designed and developed to help all those HTML lover, who are interested to learn HTML as beginner or want to go in deep with HTML. As we have included a lot of code in HTML, so that you can easily get more idea about it in lesser time.
Prerequisites
Before going to this HTML tutorial, if you have some basic idea about internet and websites, then it becomes very easy to catch anything related to it and can get better understanding about HTML. Otherwise, you can also follow this HTML tutorial, if you haven't any prior knowledge.
« CodesCracker Home Next Tutorial »