Showing posts with label Introduction.. Show all posts
Showing posts with label Introduction.. Show all posts

Thursday, January 10, 2019

GETTING STARTED

GETTING STARTED:-   

   


HTML files are just simple text files, so to start writing in HTML, you need a simple text editor ,for learning HTML a simple text editor like Notepad (PC) or TextEdit (Mac) will be easy . HTML can be edited by using a professional HTML editor like Adobe Dreamweaver , Microsoft Expression Web,CoffeeCup HTML Editor .

To create a simple Webpage with notepad :    

 => Open Notepad (PC) or TextEdit (Mac)

Write some HTML into Text Editor :   

Following is an example of a simple HTML document with Heading and Paragraph :-

 EXAMPLE:-
---------------------------------------------------------
<html>

<body>

  <h1>This is Heading</h1>

  <p> This is paragraph</p>

</body>

</html> 

---------------------------------------------------------

Save the HTML page :-

  • The finished page should be saved in .Html extension .
  • UTF-8 is the preferred encoding for HTML files .

To view the HTML page :-

Open the saved HTML file in your browser. The page will look like this:-

================================   

This is Heading

This is paragraph
================================

Tuesday, January 8, 2019

Html versions.

HTML VERSIONS:-     
sk.

    VERSIONS :- YEAR


  • HTML.        :- 1991
  • HTML 2.0   :- 1995
  • HTML 3.2   :- 1997
  • HTML 4.01 :- 1999
  • XHTML       :- 2000
  • HTML 5      :-  2012




HTML.

HTML:-      
sk.

HTML stands for Hyper Text Markup Language it was created by Berners-Lee in late 1991 , which is the most widely used language on Web to develop web pages.

Web browsers can read HTML files and compose them into visible or audible web pages. Browsers do not display the HTML tags and scripts, but use them to interpret the content of the page. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming language .


Internal Javascripts

Internal Javascripts :    The script code can be written directly into the HTML document. script code is placed in header of the docume...