Thursday 27 March 2014

HTML BEGINEER

HTML can be edited by using a professional HTML editor like :

  • Adobe Dreamweaver
  • Microsoft Expression Web
  • CoffeeCup HTML Editor

However, for learning HTML we recommend a text editor like Notepad (PC).We believe simplicity will be the best start.
Following 4 steps is sufficient to create your first web page using Notepad

Step 1: Start Notepad
To start Notepad go to:
Start
    All Programs
        Accessories
            Notepad

Step 2: Edit Your HTML with Notepad
Type your HTML code into your Notepad:

Step 3: Save Your HTML
Select Save as.. in Notepad's file menu.
Use the extension .html or .htl to save the file
Save in any folder, like infotuck.

Step 4: Run the HTML in Your Browser
Double click on your HTML file and your first web page will open.

he <p> element:
<p>My Paragraph.</p>
The <p> symbol is used to define paragraph.
It has a start point <p> and an end point </p>.
The content is: My Paragraph.
The <body> element:
<body>
<p>This is my first paragraph.</p>
</body>
The <body> symbol is used to define the body of an HTML file.
The symbol has a start point <body> and an end pont </body>.
The element content is another HTML element (a p element).
The <html> element:
<html>

<body>
<p>This is my first paragraph.</p>
</body>

</html>
The <html> element defines the whole HTML document.
The element has a start tag <html> and an end tag </html>.
The element content is another HTML element (the body element).
The HTML <a> tag defines a hyperlink.
The html link:
A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document.
The pointer turns into a little hand when we hover the pointer over the link
The most important attribute of the <a> element is the href attribute, which indicates the link's destination.

HTML Link Syntax
The HTML code for a link is an easy piece of cake. It looks like this:
Syntax:
<a href="url">Link text</a>
Example
<a href="http://tutorialterminal.blogspot.in/">Visit our blog</a>

No comments:

Post a Comment