What is a HTML? How to create HTML Web page.

The Full of a HTML is a Hyper Text Markup Language.HTML is a combination of a two words one is a Hyper Text and second one is a Markup Language.Hyper Text is a give information about the link between the Web-pages. Markup Language tells about the text document within tags and Structure of a Web-Pages. HTML [Hyper Text Markup Language] was developed by Physicist Scientists Tim Berners Lee in 1991. 


HTML [Hyper Text Markup Language] is a used for to create Web-Pages and Web Application. HTML [Hyper Text Markup Language] is a create only static Web-Pages. HTML is a [Hyper Text Markup Language] mostly used for Web activity.

HTML [Hyper Text Markup Language] is a Markup Language not a Programming Language. The file extension of a HTML  [Hyper Text Markup Language] is a .html or .htm.

History of a HTML  [Hyper Text Markup Language] :-

HTML [Hyper Text Markup Language] was developed by Physicist Scientists Tim Berners Lee in 1991. 

  • HTML 1.0 [Hyper Text Markup Language] First Version :-
HTML 1.0 [Hyper Text Markup Language] was launched in a 1993. HTML 1.0  [Hyper Text Markup Language] was used only Information Sharing and access the Web-Pages.
  • HTML 2.0  [Hyper Text Markup Language] Second Version :- 
HTML 2.0  [Hyper Text Markup Language] was launched in a 1995. HTML 2.0  [Hyper Text Markup Language] is a redefining of core features of HTML 1.0  [Hyper Text Markup Language]. HTML 2.0  [Hyper Text Markup Language] having a Text Box, button options etc.

  • HTML 3.0  [Hyper Text Markup Language] Third Version :- 
HTML 3.0  [Hyper Text Markup Language] was launched in a 1997. HTML 3.0  [Hyper Text Markup Language] was Modification of a HTML 2.0  [Hyper Text Markup Language]. HTML 3.0  [Hyper Text Markup Language] is a used to calculate the some complex Mathematical Calculation.

  • HTML 4.0  [Hyper Text Markup Language] Fourth Version :-
HTML 4.0  [Hyper Text Markup Language] was launched in a 1999. HTML 4.0  [Hyper Text Markup Language] was a more successful HTML [Hyper Text Markup Language] version as compared to the All versions of HTML  [Hyper Text Markup Language]. HTML 4.0 having a features of to support the CSS [Cascading Stylesheet] and Scripting.

  • HTML 5.0 [Hyper Text Markup Language] Fifth Version :- 
HTML 5.0 [Hyper Text Markup Language] was  launched in a 2014. HTML 5.0 [Hyper Text Markup Language] is a extended version of a HTML 4.01 [Hyper Text Markup Language].

Important Note :- When the first version of HTML  [Hyper Text Markup Language]  was launched, it had 18 tags, but today HTML  [Hyper Text Markup Language]  has a total of 140 tags, all of which work properly in modern websites.

  • Three main section of HTML  [Hyper Text Markup Language] Elements :-
  1. Opening Tag :- Opening Tag is a represent the starting of a HTML [Hyper Text Markup Language] Tags. Opening Tag is a enclosed by the Opening and closing  Angle bracket. For Example :- <p>
  2. Closing Tag :- Closing Tag is a represent the closing of a HTML  [Hyper Text Markup Language] Tags. Closing Tag is a enclosed by the forward slash with a opening and closing Angle bracket. For Example :- </p>
  3. Content :- Content is a Output of a HTML  [Hyper Text Markup Language] page which written by the user. The Output is a enclosed by the Opening Tag and Closing Tag. 
Features of the HTML  [Hyper Text Markup Language] :-
  1. Easy to Learn :- HTML  [Hyper Text Markup Language] is a easily any Learn and easily use and implement.
  2. Platform Independent :- HTML  [Hyper Text Markup Language] having a ability to implement any platform for run. HTML  [Hyper Text Markup Language] is a run anywhere of any System.
  3. Case insensitive :- HTML  [Hyper Text Markup Language] is a Case insensitive Markup Language. It means it's supports both upper-case and lower-case.
  4. Lightweight :- HTML  [Hyper Text Markup Language] is a create lightweight Web-Page for the Web Browsers.
  5. Local Storage :- HTML  [Hyper Text Markup Language] is a used for Local Storage of the Data.
  6. Attribute :- HTML  [Hyper Text Markup Language] having a many attributes it's reduce the amount of code in a Web-Page development Time.
  7. Flexible :- HTML  [Hyper Text Markup Language] is a made the more flexible Web-Pages.
  8. Semantic Structure :- HTML  [Hyper Text Markup Language] having a property of Semantic Structure Like <footer>,<header> etc.
  9. Multi-media :- HTML  [Hyper Text Markup Language] having a ability to a display the Image, Audio, Video etc.
Basic Structure of HTML [Hyper Text Markup Language] Page :- 
  • <!Doctype HTML> :-  <!Doctype HTML> is a Document declaration type.<! Doctype HTML>  is a define the Structure of the Web page.<! Doctype HTML> is a case insensitive.
  • <HTML> :- <HTML> Tag is a root element of the HTML page.<HTML> Tag is a second outer tag of HTML page. All tag are comes within <HTML> Tag of the HTML web page.
  • <Head> :- <Head> tag is a define head position of HTML page. <head> tag is a not display of the HTML web page.
  • <Title> :- <Title> tag is a used for gives the Title the HTML web page.
  • <Body> :- <Body> tag is a define the Structure of body of HTML Web page. All Contain of Web page comes under the <Body> tag.
Basic Syntax Of HTML page :-

<! Doctype HTML>
<html>

<head>

 

<Title> </Title>

 

</head>

<body>

 

</body>

 </html>

Formatting of a HTML :-

It is a provide text appearance on a HTML web page. How Web page are looks like. HTML formatting is divided into two parts :-

  • Physical Tag :- Physical Tag is a used for a Text appearance.
  • Logical Tag :- Logical Tag is a used for Semantic Value of the text.
List some of a HTML Formatting Tags :-

  • Bold :- Bold tag is used for the bold to the Text. 
Syntax :- <b>  </b>

  • Underline :- Underline tag is used for the underline to the Text.
Syntax :- <u>   </u>

  • Small :- Small tag is used for to display the small to the Text.
Syntax :- <small>   </small>

  • Italic :- Italic tag is used for the italic to the Text.
Syntax :- <I>  </I>

  • Big :- Big tag is used for the big to the Text.
Syntax :- <big>   </big>

  • del :- del tag is used for the display to the deleted content.
Syntax :- <del> </del>

  • Paragraph :- Paragraph tag is a used for display the paragraph.
Syntax :- <p>  </p>

  • heading :- heading tag is a used for giving heading to the Text. heading tag is six types.
Syntax :- <h1>  </h1>

<h2> </h2>

<h3>  </h3>

<h4>  </h4>

<h5>  </h5>

<h6>  </h6>


How to Create HTML Web page :- 

Example :-

<!DOCTYPE html>

<html>

<head>

<title>HTML Page </title>

</head> 

<body>

<h1>Introduction of HTML</h1>

<h1> Welcome to tecscholar</h1>

<p>Hello World!</p>

</body> 

</html>




HTML Page

Output:-

Introduction of HTML

Welcome to tecscholar

Hello World!

  What is a Java. How to Write a basic Program in a Java. 



 left;">  Advantages of HTML :-

  1. HTML is a Easy to Learn and implement.
  2. HTML is used to create Web-Page.
  3. HTML is a used for a Game Development.
  4. HTML is a used for Responsive UI.
Disadvantage of a HTML :-

  1. HTML is a not used for to create dynamic Web page
  2. The security feature of HTML is not a so good.




Comments

Popular Posts

Raspberry pi ? Its working and uses

What is a Microprocessor it's working and uses.