Complete HTML Tutorial: Build Your First HTML Webpage

In previous articles we discussed about HTML Introduction, Definition, Tags etc. In this article we will know How to Build a simple basic HTML page using Notepad (You can use any third-party note pad application). Now follow the steps which are given bellow...
AN EXAMPLE TO BUILD A WEB PAGE


Now we will discuss How to create this simple webpaage using HTML code.
Code of the Web page is given bellow...
<html>
<head>
<title> TechFreon </title>
</head>
<body>
<h1 align = "Center"> This is an example from TechFreon </h>
</body>

</html>

Discussion:
  • <html> & </html> Tag: 
These two tags are very very important to build an web page and these are necessary also. Here <html> tag is called the start tag and this is written to the very top of any code line of an HTML and the </html> is the written at the end of any code line. 


  • <head> & </head> Tag:
These two tags are used to notify or mention any (header) information of any Web page.
As an example if we build any traveling website of any company like ABC Traveling Agency then in the header, this name or any information will be must included.

  • <title> & </title> Tag:
In the <head> and </head> part the title part is included. Here two title tags actually denote the title of a web page.

  • <body> & <body> Tag:
This is the main Tag of any web page or HTML. These two tags carries the main content of any web page like text, table, image, scrolling text etc.

Post a Comment

0 Comments