HTML is the standard markup language it help to creat web pages so you need to understand HTML Introduction so let's get started to learn about html.

What is HTML?

  • HTML stands for Hyper Text Markup Language
  • HTML main pillar of a Web page
  • HTML consists of a sequence of html elements
  • HTML elements communicate to the browser display the content
  • HTML elements are represented by tags
  • HTML elements denoted by less then (<) and greater then (>)  sign.
  • HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
  • Browsers do not display HTML tags, but present the content of the page

My First Web Page

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Web Page</h1>
</body>
</html>


<%-- --%>