Labels

Powered by Blogger.

Monday, 23 September 2013

Html Links

<html>
<head>
<title>
</head>
<body>
<a href="http://www.seomadurai.blogspot.com"> this is my a blog</a>
</body>
</html>



output:
display this web site
www.seomadurai.blogspot.com

Sunday, 22 September 2013

paragraph tag

syntax:



<p> this is paragraph tag</p>



for example:


<html>
<head>
<title>welcome</title>
</head>
<body>
<p> this is paragraph tag</p>
</body>
</html>
outupt:


 this is pargraph tag

description:

<p> have the opening tag and closing tag.paragraph tag do u have any content then using the paragraph tag. the paragraph in between body tag.body tag will be performance only display the browser.

Saturday, 21 September 2013

Heading tag

<html>
<head>
<title>welcome</title>
<body>
<h1> heading 1 </h1>
<h2 >heading 2</h2>
<h3> heading 3</h3>
<h4>heading 4</h4>
</body>
</head>
</html>


output:

This is heading 1

This is heading 2

This is heading 3

This is heading 4

 
 

Basic syntax

<html>
<head>
<title>welcome</title>
</head>
<body>
</body>
</html>

 
HTML></HTML>

This element tells browsers that the file is a HTML document. Each HTML document starts with the tag <HTML>. This tag should be first thing in the document. It has an associate closing tag </HTML> which must be the last tag in the file.

<HEAD></HEAD>

The head contains important information about the document.

<TITLE></TITLE>

The title tag is an important tag. It is used to display a title on the top of your browser window. Both the opening and the closing tags go between the head tags.

<BODY></BODY>

The Body Tag is used to identify the start of the main portion of your webpage. Between <BODY> </BODY> tags you will place all images, links, text, paragraphs, and forms. We will explain each tag that is used within the body of theHTML file.




 

HTML Introduction




Introducing HTML:

HTML stands for Hypertext Markup Language, and it is the most widely used language to write Web Pages. As its name suggests, HTML is a markup language.
  • Hypertext refers to the way in which Web pages (HTML documents) are linked together. When you click a link in a Web page, you are using hypertext.
  • Markup Language describes how HTML works. With a markup language, you simply "mark up" a text document with tags that tell a Web browser how to structure it to display.
Originally, HTML was developed with the intent of defining the structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information between researchers.
All you need to do to use HTML is to learn what type of markup to use to get the results you want.

Creating HTML Document:

Creating an HTML document is easy. To begin coding HTML you need only two things: a simple-text editor and a web browser. Notepad is the most basic of simple-text editors and you will probably code a fair amount of HTML with it.
You can use our HTML Online Editor to learn HTML. Here are the simple steps to create a baisc HTML document:
  • Open Notepad or another text editor.
  • At the top of the page type <html>.
  • On the next line, indent five spaces and now add the opening header tag: <head>.
  • On the next line, indent ten spaces and type <title> </title>.
  • Go to the next line, indent five spaces from the margin and insert the closing header tag: </head>.
  • Five spaces in from the margin on the next line, type<body>.
  • Now drop down another line and type the closing tag right below its mate: </body>.
  • Finally, go to the next line and type </html>.
  • In the File menu, choose Save As.
  • In the Save as Type option box, choose All Files.
  • Name the file template.htm.
  • Click Save.