Introduction to HTML 5
HTML stands for hyper text markup language for create web pages.
HTML is a markup language not a programming language
html works like a skeleton of a human beings, a car etc.
It stands for creating web pages .with html you can create multiple web pages of your own website.
HTML describe the structure of a web pages.
HTML consists of a series of elements. Html element tells the browser how to display the content.
For creating a html documents you first need a html code editor and secondly you will know that how to run a html code in your code editor like sublime text editor ,Visual Studio Code. I will recommend you to use the Visual studio code for Creating of your website because Visual studio code is more and many features flexible than others editor so you should use the Visual studio code for creating web pages.
SKELETON OF HTML DOCUMENTS :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML</title>
<!-- HTML -->
<!-- Custom Styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
<!DOCTYPE html> tells the browser that this is a Html5 document.
The HTML documents itself begins with <html> and ends with </html>
The visible part of the HTML document is between <body> and </body>
Example :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>example</title>
<!-- HTML -->
<!-- Custom Styles -->
<link rel="stylesheet" href="style.css">
</head>
<!-- HTML body-->
<body>
<h1>Nothing to see here</h1>
<p>Heer</p>
</body>
</html>