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...
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:
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.
AN EXAMPLE TO BUILD A WEB PAGE
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:
- <head> & </head> Tag:
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.
0 Comments