How to create a simple HTML webpage?

simple html

This tutorial will help you create a very basic HTML page. This is really the first step towards web-page development using HTML.

<!DOCTYPE html>
<html>
<head>
<title>Title of your Web-Page</title>
</head>
<body>

<h1>Heading of Web-Page</h1>
<p>This is a paragraph.</p>

</body>
</html>

Basic Code for a HTML website.

Above code shows a simple HTML code for a website. This is the fundamental of every web-page.

  • <!DOCTYPE html> defines that this is a HTML5 document.
  • <html> is the root element of the page.
  • <head> it contains important Meta information about the page.
  • <title> This tag helps you specify the title of the web-page.
  • <body> This is where all the visible content of the web-page is present.
  • <h1> is the first heading present on the page.
  • <p> specifies it is a paragraph.

Thats all for now. You can try this in HtmlSave.com.