HTML Tutorial

HTML Tutorial for beginners to learn HTML online for free.

HTML is the most popular language to create web pages. Using HTML along with CSS, you can design beautiful layouts for website. Here, you will learn HTML basic to advanced concepts step by step.

HTML Tutorial covers HTML basic syntax, page structure, text formatting, heading, paragraph, comments, fonts, marquees, images, links, list, table, form, frame and other tags. Each chapter will provide you with an easy example, program, and exercise.

HTML Introduction

What is HTML? HTML is the standard markup language for creating web pages. HTML stands for Hypertext Markup Language. Hypertext is more than simple text. Hypertext can works as a link. A…

HTML Page Structure

A basic HTML page structure mainly consists of 4 HTML tags: <!DOCTYPE html> : This is the Document Type Declaration that informs the web browser about the type and version of HTML used on…

HTML Head

HTML Head element mainly contains metadata (data about data) about the HTML Page. You can place the HTML page title, scripts, styles, and other meta information in the head element. This information…

HTML Elements and Tags

A Website page is made up of multiple HTML elements and HTML element is made of HTML tags. HTML Tags HTML tags are like labels or keywords to define web page. These…

HTML Attributes

HTML Attributes are part of the HTML Tags & elements. These attributes specify some additional style or special information about the HTML tags. Most of the time attributes are specified as pairs….

HTML Headings

HTML specifies six levels of headings. All heading element has its own font size and spacing before and after the heading. Headings are defined with the <h1> to <h6> tags. <h1> defines the most important (highest level)…

HTML Paragraphs

HTML paragraph tags are used to define the text paragraphs. When we create any document, we divide text content into multiple paragraphs. Similarly, HTML documents can be divided into HTML paragraphs. HTML <p> the…

HTML Styles

HTML is primarily used to defines the structure of the web page While Cascaded style sheets (CSS) are a language that is used for the presentation of HTML Page. Using CSS in…

HTML Formatting

HTML Formatting tags are used to format the appearance of the text on your web page. When you use MS Word processor, you format text as bold, italic, or underlined. Similarly, HTML…

HTML Comments

HTML Comment tags are used to insert some useful comments in the HTML document. Anything you write inside Comment tags will be ignored by web browser and it will not show any…

HTML Links

Links are used to connect multiple HTML pages. A Website is a collection of web pages and these web pages are connected with each other using HTML links. User can visit one…

HTML Images

You can insert HTML images in a web page. Images plays an important part to make a web page attractive and beautiful. You can add multiple images with variety of sizes in…

HTML Lists

HTML List Tags are used to specify information in the form of list. HTML Lists are very useful to group related information together. Often List items looks well-structured and they are easy…

HTML Iframes

An HTML Iframe is used to include and display one web page within another web page. Iframe is also called Inline Frame. Using HTML Iframes, you can embed one or more external…

HTML Forms

HTML Forms are used to collect some data from users on a webpage. Learn Forms Elements – Input text, check boxes, radio & submit buttons with Examples here

HTML Tables

HTML Tables are used to organise information into rows and columns. In HTML tables you can arrange data such as text, images or links. Using Tables you can get better formatting of…

HTML Frames

HTML Frames are used to divide browser window into multiple rectangular sections or frames, where each frame can load and display separate HTML document. Warning: Do not use body tag when using frames….