HTML Full Form - HTML Introduction

In this tutorial, You learn HTML Full Form with its intro, explanation, html edition, features, some common HTML tags, and example.

Explanation


HTML full form? 
HTML full form - HyperText Markup Language. It is developed by Tim Berners-Lee in 1900, Tim Berners-Lee invented WWW(World Wide Web). He also created the first Website. It is a text-based approach to describing the HTML web page structure and uses browser to interpret for display text, images, and other forms of multimedia(audio and video, etc.) on WWW. 

Everything that you see on the web is documents written in a special language called one version of html or another and interpret by web browsers like Netscape, Internet Explorer, Chrome, etc. Web browser knows how to display text as images, links and other supported media on the screen. It provides a basic structure of the web pages and for changes in its appearance, we use cascading style sheets or CSS that provide user-friendly nature.

HTML Features

Below I shared 5 best html features that help you to understand why html best.
  1. It is a markup language. 
  2. It is platform-independent.
  3. Hypertext can be added to the text.
  4. It is easy to learn and easy to use.
  5. Images, video, and audio can be added to a web page.

HTML Edition


Below I shared a list of different html edition with a year in which it released with update of the previous edition and comes with more features to make it better.

 
HTML EditionYear
HTML   1991 
HTML 2.0 November 24,1995 
HTML 3.2 January 14, 1997 
HTML 4.01December 18,1999 
XHTML  2000 
HTML 5October 28, 2014 

Common HTML Tags


HTML Tags are always written inside Less Than '<' & Greater Than '>' characters. Each & Every tag which was open is always close. It provides many layout commands, called 'html tags' that control the presentation of information on the pages. For example, there are various types of tags for the image, heading, paragraphs, tables, and so on.

3 Tags Must Use in Every Project

These three <head>, <title>, and <body> tags are use in all html pages. Tags and Elements is an individual component of the webpage.

html tags
HTML Tag


In the above tag example, Elements are written with start tag or with attributes and closed with a forward slash end tag, content written in between. The Opening tags can contain Attribute name-Attribute value pairs known as attributes.

Html web page examples with source code

Here I shared HTML web page example with source code and a description of each section. 
The below images contain a key section to html web page structure. The first line contains the opening tag lets the browser know that it is reading code form here. The head tag contains all meta-information about the page such as title, the path of CSS. The heading tag contains heading and the paragraph tag contains a paragraph of your heading.

html structure
HTML Structure



Source Code:


<!DOCTYPE html>
<html>
<head>
<title>Codeamy</title>
</head>
<body>

<h1>Codeamy</h1>
<p>Programming and Web Development</p>

</body>
</html>

Make Your First Web Page 

To make your first web page as we know it is a markup language, it can be created in the text editor like NotepadNotepad++, etc. and Copy the above code in your text editor then save this file with the use of .htm or .html file extension.
Once the file is created and save it. To view open files with any browser on the desktop.

first web page
First Web Page
Comment below if you have any queries related to HTML full form with HTML intro, explanation, html edition, features, some common HTML tags, and example.
Happy Coding 😊

If you have any doubts, Please let me know

Previous Post Next Post

Contact Form