Today we will learn to make a simple Hello world! html document.

HTML is a hyper text markup language for documents designed to be displayed in a web browser. Today we will learn to make a simple hello world document using html.

First i will make a simple document and later i will explain it.


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

<p>Hello world!</p>

</body>
</html>
  • The <!DOCTYPE html> means that the document is HTML5 document.
  • <html> is the root element of html document.
  • <head> element contains meta information about document.
  • <title> element specifies the title of a document.
  • <body> element contains all the visible contents of the document like <p> (paragraph).
wooooh! you created your first html doument.

Comments