Web page Creation using HTML:
The basic requirements to create web page using HTML are as
follows:
1.Text Editor:
It is used to write HTML commands.Any Simple text editor Like
notepad or wordpad can be used for this purpose.We can use Text Editors Like
Sublime Text 3,VS Code,Atom etc for fast Coding.
NOTE: I will Use Sublime Text 3 In my Tutorials Because it is
the best To Use.
2. Web Browser:
It is used to test the web pages,Internet Explorer and
Netscape Navigator are Two Popular web browsers.Web Browsers Like Google
Chrome,Mozila Firefox etc
Basics Structure Of HTML Document :
The Basic Structure Of an HTML Document is as follows:
<!DOCTYPE html><html><head> <title></title></head><body> </body></html>
In every HTML Document ,<HTML> and </HTML> tags indicate the beginning and
end of the document.These tags inform the browser that document is an HTML.All
other HTML tags must be written within these tags.
The HTML document can be divided into two sections:
- . Head section
- . Body section
1.Head Section:
<HEAD> and </HEAD> tags identifying the heading or
title of document.The tags <TITLE> and </TITLE> can appear as title
in the browser’s window.Its Length should not be more than 60 characters.
2.Body Section:
The Body of an HTML document contain the text that
is displayed on a we page.The bosy section is enclosed within<BODY> and </BODY>
tags.It gives a description of the document layout and structure.
No comments:
Post a Comment