Skip to main content

Introduction of HTML

Learn HTML, it is a markup language which is used for creating Web Pages.  HTML stands for Hyper Text Markup Language. It was developed by Tim Berners-Lee in 1991. It is the official language of World Wide Web for developing web pages.  It is descendant of SGML i.e., standard generalized markup language.  It is used to define the structure of the web page.

 In HTML, one can create web pages using the collection of tags  HTML tags are surrounded by angular bracket(< >).  The extension of the HTML file is .htm or html. 

Types of tags
1. Container tag
2. Empty tag

Container tag
It has both starting and ending tag
Example
 <b></b>

Empty Tag
It has only starting tag.
Example
<br>,<em>,<hr>

Basic Structure of HTML

<html>
<head>
<title>
My first page
</title>
</head>
<body>
Hello
</body>
</html>

Definition of Basic Structure Tags


<HTML></HTML>
<HTML> tells the browser, that from here html’s coding has started. It is a container tag.

</html> tells the browser that html document has been finished.
<head></head>
It displays the header of the document.
<title></title>
It displays the title of the web page. It is used inside the <head> </head> tag.
<body></body>
It defines the document body.  It displays text, images, tables, list, hyperlinks , forms etc. in it.


Software Requirement for Creating Web Pages

  •        Notepad
  •        Any browser like Mozilla Firefox, Internet Explorer, Google Chrome etc.
                                                                    

NEXT

Comments

Popular posts from this blog

Lists in HTML - Unordered List

Unordered List An Unordered List is a collection of item that is not  in sequential order. It starts with the <ul> tag and ends with the </ul> tag. Each list item starts with the <li> tag. Each item is marked with the bullet i.e . with the disc or square or circle.  By default the tag starts with the disc . It is also called Bulleted list. Tags of Unordered List <ul> </ul> <li></li> Example    Write a  program to print the list given below pen pencil book <html> <head> <title> unordered list </title> </head> <body> <ul> <li>pen</li> <li>pencil</li> <li>book</li> </ul> </body> </html> Example of Attributes of <ul> tag with the Type attributes Write a program to print the list given below <html> <head> <title> unordered list </title> </head...

HTML FRAMES - HTML Frames Example with Output

Post Updated :16-02-2018 HTML Frames is used to display more than one file. It is used to divides the browser window into different parts or sections  i.e.  row-wise or column-wise or row and column-wise . Each section can display HTML files.To create a frame  two tags are used they are <frameset> and <frame> tag. Attributes of  <frameset>    tag 1. Cols=value is % or pixels 2. Rows= values in % or pixels Attributes of <frame> tag 1. Src= "path" 2. Name="name of the frame" 3. Border= value in pixels 4. Noresize 5. Scrolling="true" or "false" 6. Marginwidth=value in % or pixels 7. Marginheight=value in % or pixels If I want to divide the browser into two columns. The following example will be used to divide the window into 2 section. In the example given below we are using to divide the browser into equal sections i.e. 50% each. HTML Frames Example with Output Simple example of two- framed page ...

HTML WEB PAGE DESIGN - How to Create simple HTML web page

How to Design Simple HTML Web page In this article, we are going to learn how to design HTML web page. This article is used to let you know, how to create a simple web page using HTML. With this article you will come to know how to create the simple web page from scratch. To create the web page one should use the editors like notepad or Dreamweaver or Notepad++ etc. Here we are using Notepad ,in this connection steps are initiated to be as following HTML  Web Page Design A web page is a part of a website, containing information about a particular topic. You can create a custom web page using HTML. You can put anything you want on your web page like images, tables, hyperlinks, etc. Open Notepad: To open the Notepad one has to go to Start -> All Programs -> Accessories ->Notepad.  Notepad Once Notepad is open write the coding their as given below 1. <HTML> is the first tag of the web page and you have to write it at the top ...