HTML Tutorial for beginners

HTML is a very simple and popular language and every programmer or coder will aware of this language. You may be surprised after knowing that about 1.3 billion websites online today are using HTML language in one way or the other. Don’t be confused between HTTP and HTML, I think many of use will know the difference but those who are beginners will be confused in these different terms.

https://lh3.googleusercontent.com/LrvNvMYLVqZ8u80uRm_EOWQ_nutXr6ZVGAaJzTpNCvDTSEEy7bLdthPeC4KecaFCRa-Cr0EpUWHZJXGpQZ5vXUCO_bjAmhAIdBC2f_vU_pHEVzTF9N7r_C-2RiCT69Vk5cVqwBpI

What is HTML?

HTML stands for hypertext Markup Language which is used to create the structure of the Web page and web applications. With the help of HTML, you can link one web page to another using HTML hyperlink tag There are many tags in HTML and most of the tags has it’s own attributes. Each HTML tag performs a different function on the web page. You can create Tables, insert an image, send data to the server using input type tag with its attributes. There are many websites on the Internet from where you can learn HTML like W3Schools.

Features of HTML

Structure of HTML

<!DOCTYPE html>

<html lang="en">

<HTML>

<head>

<title> Page Title </title>

</head>

<body>

<h1> This is a Heading </h1>