Senin, 30 Juli 2012

DASAR-DASAR HTML

Pengertian singkat tentang HTML

HTML (Hyper Text Markup Language) merupakan bahasa
standar untuk membuat suatu dokumen HTML (halaman web)
 yang terdiri dari kode-kode singkat tertentu, dimana dengan
kode-kode tersebut akan memerintahkan Web browser bagaimana
untuk menampilkan halaman Web yang terdiri dari berbagai macam
format file seperti teks, grafik, animasi, link maupun audio-video.
Sedangkan Web browser adalah sebuah progam yang dapat
menterjemahkan kode perintah dari dokumen HTML
tersebut sehingga dapat kita lihat, baca dan dengar.
Contoh dari Web Browser adalah Internet Explorer,
Netscape Navigator, Mozilla Firefox, Opera, Safari dll.
HTML mempunyai file perluasan (extention) htm atau html.
Dimana kedua perluasan tersebut adalah sama, jadi anda boleh
menyimpan file dokumen HTML dengan extention ".htm" atau ".html".
Untuk mulai belajar HTML kita akan menggunakan Texs Editor,
Notepad. Di bawah ini adalah contoh suatu dokumen HTML
yang sangat sederhana. Buka Notepad, silahkan mulai dengan
mengetikkan (copy/paste) kode di bawah ini:

<html>
<head>
<title>Titel Websiteku</title>
</head>
<body>
Ini adalah dokumen HTML pertamaku
</body>
</html>
 
 

Tag Dasar HTML

Komponen dasar dari suatu dokumen HTML terdiri dari tag
 elemen HTML, HEAD dan BODY. Berikut ini adalah penjelasan dari
Tag Elemen tersebut:
<html> <head> <title>Disini titel websiteku</title>
 </head> <body> Disini adalah konten yang tampil di browser 
</body> </html>



Format Font HTML

Tag HTML untuk font adalah <font>…</font>, dengan tag ini kita
bisa menentukan jenis font (face), warna (color), dan ukuran (size),
 untuk lebih jelasnya mari kita perhatikan contoh berikut ini:
<html>
<head></head>
<body>
Untuk membuat jenis font (face):
<h1><font face="Verdana">
Judul dengan font Verdana</font></h1>
<p><font face="Times">
Konten dengan font Times</font></p>
Untuk membuat ukuran (size):
<h1><font size="5">Judul dengan size 5</font></h1>
<p><font size="3">Konten dengan size 3</font></p>
Untuk membuat warna font (color):
<h1><font color="blue">Judul dengan 
warna biru</font></h1>
<p><font color="red">Konten dengan warna merah</font></p>
Contoh komplit untuk membuat jenis font (face),size dan color:
<h1><font face="Verdana" size="4" 
color="green">Judulnya Tentang Font</font></h1>
<p><font face="Arial" size="3" color="#660000">
Ini adalah contoh tulisan dengan <i>pengaturan font</i>
 yang menggunakan<br>
tag HTML elemen <b>font</b>
 dengan atribut face, size dan color...</font></p>
</body>
</html>
Preview
Berikut adalah sebagai referensi bagi anda untuk memanipulasi atribut face, color dan size:
Atribut
face="Jenis font yang digunakan", contoh: face="Tahoma"
size="Ukuran dari font (1-7)", contoh: size="3"
size="Memperbesar ukuran font", contoh: size="+1"
size="Memperkecil ukuran font", contoh: size="-1"
color="Warna dari font", contoh: color="blue"
color="Warna dari font", contoh: color="#FF0000"
Sesuai dengan recomendasi dari World Web Consortium
(W3C), Untuk HTML 4.0 keatas, tag <font>
 tidak dipergunakan lagi, sebagai gantinya dibuat tag <style>
atau disebut dengan Cassading Style Sheets (CSS). Dengan CSS
penggunaannya akan lebih kompleks dan lebih luas lagi karena dapat
dikombinasikan dengan tag elemen-elemen lainnya
di dalam dokumen HTML. Berikut adalah contoh penggunaan tag style sheets:
<html>
<head></head>
<body>
Untuk membuat jenis font (face):
<h1 style="font-family:verdana">
Judul Menggunakan font verdana</h1>
<p style="font-family:tahoma">Konten menggunakan font tahoma</p>
Untuk membuat ukuran (size):
<h1 style="font-size:150%">Judul dengan ukuran 150%</h1>
<p style="font-size:80%">Konten dengan ukuran 80%</p>
Untuk membuat warna font (color):
<h1 style="color:blue">Judul dengan warna Biru</h1>
<p style="color:red">Konten dengan warna merah</p>
Contoh komplit untuk membuat jenis font (face),size dan color:
<p style="font-family:verdana;font-size:80%;color:green">
Ini adalah contoh tulisan pengaturan font dengan
 <i>Cassading Style Sheets</i>
 (CSS) yang<br>
menggunakan tag HTML elemen <b>style:</b> font-family,
 font-size dan color...</p>
</body>
</html>
Preview
Untuk mengetahui lebih lanjut tentang CSS, nanti akan dibuat tutorial
 khusus untuk membahas hal ini.
Baca juga Update dari Format Font HTML ini di Tutorial HTML.


Format text HTML

Untuk menulis biasanya ada paragraf dan baris baru, lantas bagaiman cara
menuliskannya di dokumen HTML?. Dari contoh yang sudah kita buat sebelumnya,
coba tambahkan dengan tag-tag berikut ini:
<html>
<head>
<title>Selamat Datang di Websiteku</title>
</head>
<body>
Ini adalah halaman HTML pertamaku.
<p>Aku sedang membuat paragraf dan ini contohnya.</p>
<p>Ini contoh paragraf yang lainnya.</p>
<p>Ini juga paragraf mm...tapi de-<br>
ngan baris baru.<br>
Ini baris baru yang lain.</p>
</body>
</html>
Preview
Untuk membuat suatu paragraf, tag elemennya adalah <p>…</p>,
dan untuk baris baru adalah <br>, perlu diketahui bahwa sebagian tag
elemen HTML tidak memerlukan tag penutup, sebagai contoh adalah
<br> ada juga <hr>, apa itu <hr>?, coba lanjutkan lagi dengan contoh berikut ini:
<html>
<head>
<title>Selamat Datang di Websiteku</title>
</head>
<body>
<hr>
<h1>Ini adalah halaman HTML pertamaku.</h1>
Dikerjakan oleh: <!-- Tolong isikan dengan nama anda -->
<hr>
<p>Aku sedang membuat paragraf dan ini contohnya.</p>
<p>Ini contoh paragraf yang lainnya.</p>
<p>Ini juga paragraf mm...tapi de-<br>
ngan baris baru.<br>
Ini baris baru yang lain.</p>
</body>
</html>
Preview
Nah..udah tau kan apa itu <hr>. Garis Horizontal <hr> juga tidak
menggunakan tag penutup.
Selanjutnya tag <h1>…</h1> disebut dengan Heading, merupakan
ukuran teks yang biasa di pakai untuk judul, bab, maupun sub-bab lainnya.
Ukurannya ada 6 jenis mulai dari <h1> sampai <h6>, ukuran yang paling
besar adalah h1 dan yang terkecil adalah h6.
Selanjutnya tag <!--…--> adalah Comments digunakan untuk memasukkan
 (menyisipkan) suatu komentar di dalam HTML. Suatu comments akan
diabaikan oleh browser. Kamu dapat menggunakan komentar untuk menjelaskan sesuatu hal.
Dibawah ini adalah contoh format teks yang sering digunakan di dalam dokumen HTML :
<html>
<head></head>
<body>
<hr>
<h1>Ini adalah halaman HTML pertamaku.</h1>
Dikerjakan oleh: <!-- Tolong isikan dengan nama anda -->
<hr>
<p>Aku sedang mempelajari format-format teks.<br>
Contoh-contohnya adalah sebagai berikut:</p>
<p>Teks Normal<br>
<tt>Teks mesin ketik</tt><br>
<b>Teks tebal (bold)</b><br>
<strong>Teks tebal dengan perintah Strong</strong><br>
<i>Teks dengan italic (miring)</i><br>
<em>Teks miring dengan perintah Emphasized</em><br>
<u>Teks bergaris bawah (underline)</u><br>
<strike>Teks tercoret (strike)</strike><br>
<big>Teks lebih besar dari normal</big><br>
<small>Teks lebih kecil dari normal</small><br>
Teks menggunakan Subscript:
 Molekul Air adalah H<sub>2</sub>O<br>
Teks menggunakan Superscript:
 Hasil dari 10<sup>2</sup>=100<br></p>
</body>
</html>
Preview
Kemudian untuk menampilkan teks sesuai dengan yang tertulis kita
gunakan tag <pre>…</pre>, misalnya jika anda menuliskan syair sebuah lagu atau puisi:

<html>
<body>
<pre>
   <b>PUITUIS ASA</b>
   Hari ini...
   Aku sedang belajar...
   Belajar tentang HTML.
      Sulit 'ntuk dimengerti,
      Karena banyaknya teks-teks aneh.
      Tapi biarlah...
   Akan kucoba...
   Sampai pingsan.
</pre>
</body>
</html>
Preview
Baca juga Update dari Format text HTML ini di Tutorial HTML.


Hyperlink digunakan untuk menghubungkan antar dokumen
di dalam web. Tag HTML Hyperlink biasa disebut dengan
anchor (a) kemudian diikuti dengan href sebagai alamat tujuan
dari link tersebut. Berikut kita akan membuat suatu Hyperlink ke suatu alamat url:
<html>
<head></head>
<body>
<p>Aku sekarang sedang membuat hyperlink</p>
Jika anda ingin mengunjungi Microsoft
<a href="http://www.microsoft.com/">Klik disini</a><br>
<a href="http://www.yahoo.com/">Link ini</a> 
akan membawa anda ke Yahoo.com
<p>Untuk membuat hyperlink url agar dibuka pada jendela browser yang baru:<p>
<a href="http://www.mp3.com/" target="_blank">Website Musik</a>
<p>Agar hyperlink tidak bergaris bawah:<p>
<a href="http://www.mp3.com/"target="_blank" 
style="text-decoration: none">Website Musik</a>
<p>Hyperlink ke suatu halaman tertentu dalam web:<p>
<!--dengan catatan anda harus tau nama halaman tujuan tersebut-->
<a href="http://htmlcssguides.com/belajar-css/">Link ini</a> 
akan membawa anda ke halaman belajar css.
</body>
</html>
Preview
Untuk membuat hyperlink dengan menggunakan gambar (image).
Pastikan gambar tersebut berada pada folder yang sama dengan
dokumen html anda dan harus tahu nama dan ektensinya, kemudian ganti
ke atribut yang bertuliskan scr, misalkan jika nama gambar tersebut adalah
yahoo.gif, maka :
<a href="http://www.yahoo.com"> <img src="yahoo.gif" border="0" 
width="147" height="31"></a>
 
 

Img merupakan atribut untuk suatu image (gambar), border adalah garis yang mengelilingi sisi image, width dan height merupakan lebar dan tinggi dari image. Kreatiflah
untuk menganti nilai yang ada diantar tanda "…"sehingga anda akan lebih mengerti. Untuk memposisikan gambar, tambahkan dengan
atribut align="…", left= kiri, center= tengah dan right= kanan.
<a href="http://www.yahoo.com"> <img src="yahoo.gif" border="0" 
width="147" height="31" align="left"></a>
 
 
Sekarang coba geser mouse anda ke gambar di atas, jangan di-klik, perhatikan akan ditampilkan suata tulisan singkat mengenai gambar tesebut, ini disebut dengan screen tips, cara membuatnya adalah menambahkan title pada tag anchor (a) sehingga menjadi:
<a href="http://www.yahoo.com" title="Hai... klik gambar ini maka anda akan dibawa ke Yahoo.com"><img src="contoh.jpg" border="0" width="147" height="31" align="left" alt="yahoo"></a>
Agar cepat mengakses internet kita boleh mengatur browser untuk tidak menampilkan image (gambar). Dan semua gambar akan ditampilkan dengan teks alternatif (alt), jika gambar tesebut tidak memiliki alternatif teks maka hanya akan dilambangkan dengan lambang x.
<a href="http://www.yahoo.com"> <img border="0" 
src="contoh.jpg" width="120" height="30" 
align="left" alt="Text Alternatif Yahoo.com"></a>
Dalam contoh ini src atau source yaitu contoh.jpg sengaja dihapus
agar alt-nya ditampilkan, maka hasilnya adalah: Text Alternatif Yahoo.com
Baca juga Update dari Hyperlink HTML ini di Tutorial HTML.


Background HTML

Dengan menggunakan latar belakang (background) maka website kita akan nampak semakin menarik. Untuk memasukkan latar belakang kita bisa menggunakan pilihan
 warna maupun grafik (gambar).
Sekarang kita mulai dengan menggunakan pilihan warna:
<html>
<head></head>
<body bgcolor="#FF99FF">
<p>Hai.. Saat ini saya sedang belajar membuat latar 
belakang dengan warna</p>
<p>Kalau anda kurang suka dengan warnanya... 
ganti aja deh... kode warnanya... </p>
</body>
</html>
Preview
Untuk nilai dari atribut bgcolor diatas anda bisa menggunakan Kode hexadecimal, Nilai RGB atau Nama dari warna tersebut.
Coba anda ganti nilai dari atribut bgcolor dengan contoh dibawah ini:
<body bgcolor="#FFFF00">
<body bgcolor="rgb(250,250,0)">
<body bgcolor="yellow">

TAG HTML




 
Tag HTML Bagan
Tag Name Code Example Browser View
<!– comment <!–This can be viewed in the HTML part of a document–> Nothing will show (Tip)
<a - anchor <a href=http://www.domain.com/“>
Visit Our Site</a>
Visit Our Site (Tip)
<b> bold <b>Example</b> Example
<big> big (text) <big>Example</big> Example (Tip)
<body> body of HTML document <body>The content of your HTML page</body> Contents of your web page (Tip)
<br> line break The contents of your page<br>The contents of your page The contents of your web page
The contents of your web page
<center> center <center>This will center your contents</center> This will center your contents
<dd> definition description <dl>
<dt>Definition Term</dt>
<dd>Definition of the term</dd>
<dt>Definition Term</dt>
<dd>Definition of the term</dd>
</dl>
Definition Term
Definition of the term
Definition Term
Definition of the term
<dl> definition list <dl>
<dt>Definition Term</dt>
<dd>Definition of the term</dd>
<dt>Definition Term</dt>
<dd>Definition of the term</dd>
</dl>
Definition Term
Definition of the term
Definition Term
Definition of the term
<dt> definition term <dl>
<dt>Definition Term</dt>
<dd>Definition of the term</dd>
<dt>Definition Term</dt>
<dd>Definition of the term</dd>
</dl>
Definition Term
Definition of the term
Definition Term
Definition of the term
<em> emphasis This is an <em>Example</em> of using the emphasis tag This is an Example of using the emphasis tag

embed object src=”yourfile.mid” width=”100%” height=”60″ align=”center”> (Tip)

embed object <embed src=”yourfile.mid” autostart=”true” hidden=”false” loop=”false”>
<noembed><bgsound src=”yourfile.mid” loop=”1″></noembed>
&lt;bgsound src=”wonderfu.mid” autostart=”false” loop=”1″ /&gt;
Music will begin playing when your page is loaded and will only play one time. A control panel will be displayed to enable your visitors to stop the music.
<font> font <font face=”Times New Roman”>Example</font> Example (Tip)
<font> font <font face=”Times New Roman” size=”4″>Example</font> Example (Tip)
<font> font <font face=”Times New Roman” size=”+3″ color=”#ff0000″>Example</font> Example (Tip)
<form> form <form action=”mailto:you@yourdomain.com“>
Name: <input name=”Name” value=”" size=”10″><br>
Email: <input name=”Email” value=”" size=”10″><br>
<center><input type=”submit”></center>
</form>
Name: (Tip)
Email:
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
heading 1
heading 2
heading 3
heading 4
heading 5
heading 6
<h1>Heading 1 Example</h1>
<h2>Heading 2 Example</h2>
<h3>Heading 3 Example</h3>
<h4>Heading 4 Example</h4>
<h5>Heading 5 Example</h5>
<h6>Heading 6 Example</h6>

<head> heading of HTML document <head>Contains elements describing the document</head> Nothing will show
<hr> horizontal rule <hr /> Contents of your web page (Tip)

Contents of your web page
<hr> horizontal rule <hr width=”50%” size=”3″ /> Contents of your web page

Contents of your web page
<hr> horizontal rule <hr width=”50%” size=”3″ noshade /> Contents of your web page

Contents of your web page
<hr>
(Internet
Explorer)
horizontal rule <hr width=”75%” color=”#ff0000” size=”4″ /> Contents of your web page

Contents of your web page
<hr>
(Internet
Explorer)
horizontal rule <hr width=”25%” color=”#6699ff” size=”6″ /> Contents of your web page

Contents of your web page
<html> hypertext markup language <html>
<head>
<meta>
<title>Title of your web page</title>
</head>
<body>HTML web page contents
</body>
</html>
Contents of your web page
<i> italic <i>Example</i> Example
<img> image <img src=”Earth.gif” width=”41″ height=”41″ border=”0″ alt=”text describing the image” /> a sentence about your site (Tip)
<input> input field Example 1: <form method=post action=”/cgi-bin/example.cgi”>
<input type=”text” size=”10″ maxlength=”30″>
<input type=”Submit” value=”Submit”>
</form>
Example 1: (Tip)
<input>
(Internet Explorer)
input field Example 2: <form method=post action=”/cgi-bin/example.cgi”>
<input type=”text” style=”color: #ffffff; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72a4d2;” size=”10″ maxlength=”30″>
<input type=”Submit” value=”Submit”>
</form>
Example 2: (Tip)
<input> input field Example 3: <form method=post action=”/cgi-bin/example.cgi”>
<table border=”0″ cellspacing=”0″ cellpadding=”2″><tr><td bgcolor=”#8463ff”><input type=”text” size=”10″ maxlength=”30″></td><td bgcolor=”#8463ff” valign=”Middle”> <input type=”image” name=”submit” src=”yourimage.gif”></td></tr> </table>
</form>
Example 3: (Tip)


<input> input field Example 4: <form method=post action=”/cgi-bin/example.cgi”>
Enter Your Comments:<br>
<textarea wrap=”virtual” name=”Comments” rows=3 cols=20 maxlength=100></textarea><br>
<input type=”Submit” value=”Submit”>
<input type=”Reset” value=”Clear”>
</form>
Example 4: (Tip)
<input> input field Example 5: <form method=post action=”/cgi-bin/example.cgi”>
<center>
Select an option:
<select>
<option >option 1</option>
<option selected>option 2</option>
<option>option 3</option>
<option>option 4</option>
<option>option 5</option>
<option>option 6</option>
</select><br>
<input type=”Submit” value=”Submit”></center>
</form>
Example 5: Tip) Select an option:
option 1 option 2 option 3 option 4 option 5 option 6
<input> input field Example 6: <form method=post action=”/cgi-bin/example.cgi”>
Select an option:<br>
<input type=”radio” name=”option”> Option 1
<input type=”radio” name=”option” checked> Option 2
<input type=”radio” name=”option”> Option 3
<br>
<br>
Select an option:<br>
<input type=”checkbox” name=”selection”> Selection 1
<input type=”checkbox” name=”selection” checked> Selection 2
<input type=”checkbox” name=”selection”> Selection 3
<input type=”Submit” value=”Submit”>
</form>
Example 6: (Tip) Select an option:
Option 1
Option 2
Option 3
Select an option:
Selection 1
Selection 2
Selection 3
<li> list item Example 1: <menu>
<li type=”disc”>List item 1</li>
<li type=”circle”>List item 2</li>
<li type=”square”>List item 3</li>
</MENU>
Example 2:
<ol type=”i”>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Example 1: (Tip)
  • List item 1
  • List item 2
  • List item 3
Example 2:
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
<link> link <head>
<link rel=”stylesheet” type=”text/css” href=”style.css” />
</head>

<marquee>
(Internet
Explorer)
scrolling text <marquee bgcolor=”#cccccc” loop=”-1″ scrollamount=”2″ width=”100%”>Example Marquee</marquee> Example Marquee (Tip)
<menu> menu <menu>
<li type=”disc”>List item 1</li>
<li type=”circle”>List item 2</li>
<li type=”square”>List item 3</li>
</menu>
  • List item 1
  • List item 2
  • List item 3
<meta> meta <meta name=”Description” content=”Description of your site”>
<meta name=”keywords” content=”keywords describing your site”>
Nothing will show (Tip)
<meta> meta <meta HTTP-EQUIV=”Refresh” CONTENT=”4;URL=http://www.yourdomain.com/“> Nothing will show (Tip)
<meta> meta <meta http-equiv=”Pragma” content=”no-cache”> Nothing will show (Tip)
<meta> meta <meta name=”rating” content=”General”> Nothing will show (Tip)
<meta> meta <meta name=”robots” content=”all”> Nothing will show (Tip)
<meta> meta <meta name=”robots” content=”noindex,follow”> Nothing will show (Tip)
<ol> ordered list Numbered <ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Numbered Special Start
<ol start=”5″>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Lowercase Letters<ol type=”a”>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Capital Letters
<ol type=”A”>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Capital Letters Special Start
<ol type=”A” start=”3″>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Lowercase Roman Numerals
<ol type=”i”>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Capital Roman Numerals
<ol type=”I”>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Capital Roman Numerals Special Start
<ol type=”I” start=”7″>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
Numbered
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Numbered Special Start
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Lowercase Letters
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Letters
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Letters Special Start
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Lowercase Roman Numerals
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Roman Numerals
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Roman Numerals Special Start
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
<option> listbox option <form method=post action=”/cgi-bin/example.cgi”>
<center>
Select an option:
<select>
<option>option 1</option>
<option selected>option 2</option>
<option>option 3</option>
<option>option 4</option>
<option>option 5</option>
<option>option 6</option>
</select><br>
</center>
</form>
Select an option: (Tip) option 1 option 2 option 3 option 4 option 5 option 6
<p> paragraph This is an example displaying the use of the paragraph tag. <p> This will create a line break and a space between lines. Attributes:
Example 1:<br>
<br>
<p align=”left”>
This is an example<br>
displaying the use<br>
of the paragraph tag.<br>
<br>
Example 2:<br>
<br>
<p align=”right”>
This is an example<br>
displaying the use<br>
of the paragraph tag.<br>
<br>
Example 3:<br>
<br>
<p align=”center”>
This is an example<br>
displaying the use<br>
of the paragraph tag.
This is an example displaying the use of the paragraph tag. This will create a line break and a space between lines.
Attributes:
Example 1:
This is an example
displaying the use
of the paragraph tag.
Example 2:
This is an example
displaying the use
of the paragraph tag.
Example 3:
This is an example
displaying the use
of the paragraph tag.
<small> small (text) <small>Example</small> Example (Tip)
<strike> deleted text <strike>Example</strike> Example
<strong> strong emphasis <strong>Example</strong> Example
<table> table Example 1: <table border=“4″ cellpadding=”2″ cellspacing=”2″ width=”100%”>
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
</table>
Example 2: (Internet Explorer)
<table border=“2″ bordercolor=”#336699” cellpadding=”2″ cellspacing=”2″ width=”100%”>
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
</table>
Example 3:
<table cellpadding=“2″ cellspacing=”2″ width=”100%”>
<tr>
<td bgcolor=”#cccccc“>Column 1</td>
<td bgcolor=”#cccccc“>Column 2</td>
</tr>
<tr>
<td>Row 2</td>
<td>Row 2</td>
</tr>
</table>
Example 1: (Tip)
Column 1 Column 2
Example 2: (Tip)
Column 1 Column 2
Example 3: (Tip)
Column 1 Column 2
Row 2 Row 2
<td> table data <table border=”2″ cellpadding=”2″ cellspacing=”2″ width=”100%”>
<tr>
<td>Column 1</td>
<td>Column 2</td>

</tr>
</table>
Column 1 Column 2
<th> table header <div align=”center”>
<table>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>

</tr>
<tr>
<td>Row 2</td>
<td>Row 2</td>
<td>Row 2</td>
</tr>
<tr>
<td>Row 3</td>
<td>Row 3</td>
<td>Row 3</td>
</tr>
<tr>
<td>Row 4</td>
<td>Row 4</td>
<td>Row 4</td>
</tr>
</table>
</div>
Column 1 Column 2 Column 3
Row 2 Row 2 Row 2
Row 3 Row 3 Row 3
Row 4 Row 4 Row 4
<title> document title <title>Title of your HTML page</title> Title of your web page will be viewable in the title bar. (Tip)
<tr> table row <table border=”2″ cellpadding=”2″ cellspacing=”2″ width=”100%”>
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
</table>
Column 1 Column 2
<tt> teletype <tt>Example</tt> Example
<u> underline <u>Example</u> Example
<ul> unordered list Example 1:<br>
<br>
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>
<br>
Example 2:<br>
<ul type=”disc”>
<li>List item 1</li>
<li>List item 2</li>
<ul type=”circle”>
<li>List item 3</li>
<li>List item 4</li>
</ul>
</ul>