We are going to learn HTML. There is several parts of HTML , so learn HTML in the series. This is the first part of this series. We learn the HTML with the help of W3SCHOOLS.
In this post we are going to make a blank HTML page
What is HTML ?
HTML stands for Hyper Text Markup Language.
HTML is used to create webpages.
Creating a Blank Webpage
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Let me explain each Tags.
<!DOCTYPE html> means that the document we are making is a HTML5 document.
<html> is the root element in a webpage.
<head> contains meta information of the webpage.
<title> shows name of the webpage means name shown in web browser.
<body> contains all contents of webpage like posts
<h1> is the largest heading in the webpage
<p> means paragraph.