Thursday, February 18, 2010

HTML Tutorial : List and Hyperlink

Let's go learn again. Yesterday we have learn about html tags, html format and html table. This section we will know about html list and html hyperlink. What is the list and what is the hyperlink?


Lists the tags often used with HTML lists: <ol>, <ul>, and <li>.

<ol>
The <ol> tag specifies that the following list is ordered.
<ul>
The <ul> tag specifies that the following list is unordered.
<li>
The <li> tag lists each item, whether ordered or numbered. Note that each item is indented.
Example 1: ordered list.

HTML:
<ol>
<li>Unordered list 1.</li>
<li>Unordered list 2.</li>
</ol>

Display:

  1. Unordered list 1.
  2. Unordered list 2.

Thursday, February 4, 2010

HTML Tutorial : Table

Now, we will learn about table in html. Yesterdey, we have learn about tags html and format html, do you still remember?

This section lists the tags often used with HTML tables: <table>, <tr>, and <td>.

<table>
The <table> tag specifies the presence of a table. This is very often used in conjunction with the <tr> and the <td> tags. The following attributes are commonly used to define the properties of this table:
width: This specifies the width of the table. Can be specified in pixels or in relative terms (for example, 100%).
border: This specifies whether the table will have a border. The number indicates the thickness of the border.
cellspacing: The amount spacing between the cell wall and the cell border. The area enclosed by the cell walls are the maximum amount of area that text can be displayed in a cell.
cellpadding: The amount padding between cells and the each cell wall in a table.
bgcolor: This specifies the background color for this table. The color value may be specified as the color name or the six-character color code.

Tuesday, February 2, 2010

HTML Tutorial : Format

We have leard about html tags and we known about general format of html.
This section includes the tags often used for formatting the HTML text.

<font>
The <font> tag is used to change the format of the text on the web page. The most important attributes are as follows: javascript:void(0)

  • face: The type of font. Common ones include "Time New Roman", "Verdana", and "Helvetica."
  • size: This indicates the size of the text. This can be absolute (0 .. 6), or relative ("+1", "+2", ... or "-1", "-2" ...) 
  • color: This indicates the color of the text. Either the color name or the six-character color code may be used to specify color.

HTML Tutorial : Tags


In This tutorial, we will learn about HTM Tags. As we known, HTML is containt about Tags, Format, Table, List, Hyperlink, Image, Frame, etc. We have learn how to write html tags, so we can write article easily.



HTML stands for (H)yper(T)ext (M)arkup (L)anguage. It has certain tags and attributes defined, and is geared towards document display over the World Wide Web. HTML documents can be viewed in browsers such as Internet Explorer, Mozilla, Opera, and Safari. On this page, we will introduce the notion of tags and attributes. 

Tags
Tags are elements of the HTML document used to specify how the document should be displayed by the browser. In HTML, each tag has its own specific meaning, which is (in general) common across all different browsers. In fact, you may think of this tutorial as an introduction to the tags that are commonly used in writing HTML