Slide # 1

Slide # 1

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts Read More

Slide # 2

Slide # 2

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts Read More

Slide # 3

Slide # 3

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts Read More

Slide # 4

Slide # 4

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts Read More

Slide # 5

Slide # 5

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts Read More

Friday, February 12, 2010

HTML


The Hyper Text Markup Language (HTML) is a markup language used to
create hypertext documents that are platform independent.
So most of what we see in the Internet web pages are made of html document.

HTML Code was originally developed by Tim Berners-Lee while at CERN, and popularized by the Mosaic browser developed at NCSA
It is called markup language because users can mark up their documents by representing structural, presentational, and semantic information alongside content.

The HTML code standards are defined by the ietf working group.
The standard are defined in rfc documents.

How to create a html file?
Beginner guide to html!
For Windows Users:
a)Open notepad or wordpad
b)Save the file as test.html
c)When ever we want to edit the file, go to the directory where the file was saved. Select the file. Press Shift and simultaneously right click the mouse over the file. Now select 'Open With' and select notepad / wordpad to open then file.

For Linux User:
a)Use vi in a terminal and open a file as "vi test.html"
b)Save the file by using ":wq"
c)When ever we want to edit the file, Open the file using vi or quanta+

The list is an index of html tag.
We will be seeing each tag in depth in tutorials.
<html> </html> The main tag
<head> </head> header tag
<body> </body> body tag

<b> </b> makes the font bold
<center> </center> aligns things in center
<br> break line tag

&nbsp; space tag
<p> </p> define paragraph
<H1> </H1> makes the font as a heading

<u> </u> underlines the font
<i> </i> makes the font italic
<pre> </pre> to create pre formated text

<strike> </strike> makes striked text or word
<font> </font> sets font color, size, type
<img> </img> used to add image

<a> </a> linking tag
<marquee> </marquee> make text move
<blink> </blink> make text blink

<ul> </ul> used to list things
<li> </li> used to list things
<table> </table> to define table

<tr> </tr> table row inside table
<td> </td> table column inside row
<hr>horizontal line tag
<form> </form> define forms

<textarea> </textarea> shows text area
<input> </input> creates form types
<select> </select> used to create combo box

<meta> meta tags are used to redirect, refreh pages
<iframe> </iframe> used to create internal frames

<embed> </embed> Embed audio in web page

<object> </object> Include video in web page
<frameset> </frameset>Frameset
<iframe> </iframe> Inline frame

<meta> Meta tag for page ranking
<sub> </sub> Subscript and superscript
<phrase> <phrase> Phrase tag

<input type="image"> button as an image
<area> </area> Links using the image
<fieldset> </fieldset> Fieldset with legend
<!DOCTYPE> Document Type Definiton

<ol="value"> Bullet styles
<acronym> </acronym> Acronym tag
<a href title="value"> Create Tooltip
<canvas> Canvas



The first tag that you add on your file will be html.

This is the tag which defines that the document is html.



Insert the tag in to your file as.


<html>

</html>



Any new tag added will lie between this tags.


Any html file should have head and body tag inside the html tag.



<html> is called starting html tag.

</html> is called ending html tag.



Most tags in html will have both starting and ending tags.

0 comments:

Post a Comment