What is HTML ?
Start my First HTML Tutorial →HTML or Hypertext Markup Language is a markup language which is used to design webpages. HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first standard HTML specification which was published in 1995. HTML 4.01 was a major version of HTML and it was published in late 1999. The currently used of HTML is HTML5 and this version was published in 2012.
Simple Hello World
<!DOCTYPE html>
<html>
<head>
<title>This is document title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>Hello World!</p>
</body>
</html>
HTML Mindmap
Click here to open HTML Mindmap
Index of HTML Tutorial
Complete list of topics Covered in this Tutorial
Introduction
- Introduction
- History
- Where is HTML Used ?
- Prerequiste
Basics
- Heading
- Tags, Elements and Attribute in HTML
- Paragraph and Division in HTML
- HTML Hyperlinks / Links
- Images in HTML
- Comments in HTML
- HTML Table
- List in HTML
- Line Break, Horizontal Rule, and Pre Tag
HTML Styling and Formatting
- HTML Colors and CSS
- Bold, Italic and Underline
- Superscript and Subscript in HTML
- HTML Block and Inline Elements
HTML Forms
- Form and Basic Form Elements
- Input Tag in HTML
- Form Submit in HTML
HTML Semantic
- <div> tag
- HTML <aside> tag
- HTML <section> tag
- HTML <header> and <footer> tag
- HTML <main> tag
- HTML <figure> and <figcaption> tag
HTML Graphics and Media
- HTML Images Revisited
- HTML Video
- HTML Audio
- HTML SVG
- HTML Canvas
HTML, CSS and JavaScript
- 3 ways of How to include CSS in HTML ?
- Basic JavaScript and How to include JS on HTML
- HTML JS selector | class and id
- HTML Responsive design
HTML Miscellaneous
- HTML <iframe>
- HTML <blockquote>
- and such others
Prerequisites for HTML
Technically, you dont neet to have any special knowledge of any other programming language. But you must have some knowledge about :
- Text Editors/Code Editors like Notepad, Notepad++ , Visual Studio Code , etc.
- Knowledge of creating files and folder in windows.
- Interaction with Windows System
- And some creativity
Application of HTML
HTML is one of the most widely used language over the web and here listed some of its application :
- Web pages development - HTML is used to create pages which are rendered over the web. Almost every page of web is having html tags in it to render its details in browser.
- Internet Navigation - HTML provides tags which are used to navigate from one page to another and is heavily used in internet navigation.
- Responsive UI - HTML pages now-a-days works well on all platform, mobile, tabs, desktop or laptops owing to responsive design strategy.
- Offline support HTML pages once loaded can be made available offline on the machine without any need of internet.
- Game development- HTML5 has native support for rich experience and is now useful in gaming developent arena as well.
Is HTML hard to learn ?
According to me, HTML is the simplest ever language i know, actually its not programming language, its markup language. So you dont have to put your logic or other things. You only need to rember the things and apply as such. So I think its not hard to learn HTML.
Learning at Code Radius
At Code Radius, you get simple way to learn different programming language along with HTML.
You can Get Examples in Each chapter for each topics.
An Online Compiler which helps to run code in the browser.