SlideShare a Scribd company logo
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” 
Name: (Tip) Email:
value=”” size=”10″><br> Email: <input name=”Email” value=”” size=”10″><br> <center><input type=”submit”></center> </form> 
<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” /> 
(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” 
Example 4: (Tip)
value=”Clear”> </form> 
<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” 
Example 6: (Tip) 
Select an option: Option 1 Option 2 Option 3 
Select an option: Selection 1 Selection 2 Selection 3
name=”selection”>Selection 3 <input type=”Submit” value=”Submit”> </form> 
<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” 
Nothing will show (Tip)
content=”Description of your site”> <meta name=”keywords” content=”keywords describing your site”> 
<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> 
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
</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> 
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”> 
Select an option: (Tip) 
option 1 option 2 option
<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> 
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> 
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>Row 2</td> </tr> </table> 
<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 Row 2 
Row 2 
Row Row 3 
Row 3 
Row Row 4 
Row 4 
Row <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> 
Example 1: 
 List item 1 
 List item 2 
Example 2: 
 List item 1 
 List item 2 
 List item 3 
 List item 4

More Related Content

Viewers also liked

TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916
Jansen Wijaya
 
Tugas algoritma
Tugas algoritmaTugas algoritma
Tugas algoritma
Muhammad Sudirman 2
 
TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916
Jansen Wijaya
 
Laporan praktikum modul i
Laporan praktikum modul iLaporan praktikum modul i
Laporan praktikum modul i
Devi Apriansyah
 
alpro Chapter04
alpro Chapter04alpro Chapter04
alpro Chapter04
Dermawan12
 
Belajar Web HTML – Modul 6 Hyperlink
Belajar Web HTML – Modul 6 Hyperlink Belajar Web HTML – Modul 6 Hyperlink
Belajar Web HTML – Modul 6 Hyperlink
Muhammad Ibrahim
 
Arsitektur dan Organisasi Komputer - infiniband
Arsitektur dan Organisasi Komputer - infiniband Arsitektur dan Organisasi Komputer - infiniband
Arsitektur dan Organisasi Komputer - infiniband
Muhammad Ibrahim
 
Belajar Web HTML – Modul 4 List
Belajar Web HTML – Modul 4 ListBelajar Web HTML – Modul 4 List
Belajar Web HTML – Modul 4 List
Muhammad Ibrahim
 
Algo2007
Algo2007Algo2007
Algo2007
Bayoe Priyatna
 
Tag html
Tag htmlTag html
Tag html
Eka Edugawa
 
Keandalan Memori
Keandalan MemoriKeandalan Memori
Keandalan Memori
SMK Kartika XX-1 Makassar
 
Material Konduktor
Material KonduktorMaterial Konduktor
Material Konduktor
IPA 2014
 
Pemrograman Python untuk Pemula
Pemrograman Python untuk PemulaPemrograman Python untuk Pemula
Pemrograman Python untuk Pemula
Oon Arfiandwi
 
Tutorial php membuat Aplikasi Inventaris
Tutorial php membuat Aplikasi InventarisTutorial php membuat Aplikasi Inventaris
Tutorial php membuat Aplikasi Inventaris
Deka M Wildan
 
Media penyimpan 2
Media penyimpan    2Media penyimpan    2
Media penyimpan 2
Miranti Dwi Kurnia
 
Media eksternal
Media eksternalMedia eksternal
Media eksternal
Faiq Mumtaz
 
Pertemuan 10 media penyimpanan
Pertemuan 10 media penyimpananPertemuan 10 media penyimpanan
Pertemuan 10 media penyimpananjumiathyasiz
 

Viewers also liked (20)

Mikko
MikkoMikko
Mikko
 
TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916
 
Tugas algoritma
Tugas algoritmaTugas algoritma
Tugas algoritma
 
JavaScript Architektur
JavaScript ArchitekturJavaScript Architektur
JavaScript Architektur
 
TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916TUGAS 2 KELOMPOK_0916
TUGAS 2 KELOMPOK_0916
 
Laporan praktikum modul i
Laporan praktikum modul iLaporan praktikum modul i
Laporan praktikum modul i
 
alpro Chapter04
alpro Chapter04alpro Chapter04
alpro Chapter04
 
Belajar Web HTML – Modul 6 Hyperlink
Belajar Web HTML – Modul 6 Hyperlink Belajar Web HTML – Modul 6 Hyperlink
Belajar Web HTML – Modul 6 Hyperlink
 
Arsitektur dan Organisasi Komputer - infiniband
Arsitektur dan Organisasi Komputer - infiniband Arsitektur dan Organisasi Komputer - infiniband
Arsitektur dan Organisasi Komputer - infiniband
 
Belajar Web HTML – Modul 4 List
Belajar Web HTML – Modul 4 ListBelajar Web HTML – Modul 4 List
Belajar Web HTML – Modul 4 List
 
Algo2007
Algo2007Algo2007
Algo2007
 
Tag html
Tag htmlTag html
Tag html
 
Html tag
Html tagHtml tag
Html tag
 
Keandalan Memori
Keandalan MemoriKeandalan Memori
Keandalan Memori
 
Material Konduktor
Material KonduktorMaterial Konduktor
Material Konduktor
 
Pemrograman Python untuk Pemula
Pemrograman Python untuk PemulaPemrograman Python untuk Pemula
Pemrograman Python untuk Pemula
 
Tutorial php membuat Aplikasi Inventaris
Tutorial php membuat Aplikasi InventarisTutorial php membuat Aplikasi Inventaris
Tutorial php membuat Aplikasi Inventaris
 
Media penyimpan 2
Media penyimpan    2Media penyimpan    2
Media penyimpan 2
 
Media eksternal
Media eksternalMedia eksternal
Media eksternal
 
Pertemuan 10 media penyimpanan
Pertemuan 10 media penyimpananPertemuan 10 media penyimpanan
Pertemuan 10 media penyimpanan
 

Similar to Code HTML Lengkap

HTML tags
HTML tagsHTML tags
HTML tags
ramlalshah1
 
html-tags-chart.pdf
html-tags-chart.pdfhtml-tags-chart.pdf
html-tags-chart.pdf
MahmoudMuhdSardauna
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmMaria S Rivera
 
Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Linux User's Group
 
PPT-203105353-1.pdf
PPT-203105353-1.pdfPPT-203105353-1.pdf
PPT-203105353-1.pdf
PINTUCHAUHAN8
 
Creating HTML Pages
Creating HTML PagesCreating HTML Pages
Creating HTML Pages
Mike Crabb
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
 
Html ppt
Html pptHtml ppt
Html ppt
sanjay joshi
 
Introduction to Html by Ankitkumar Singh
Introduction to Html by Ankitkumar SinghIntroduction to Html by Ankitkumar Singh
Introduction to Html by Ankitkumar Singh
Ankitkumar Singh
 
Html
HtmlHtml
Html training slide
Html training slideHtml training slide
Html training slide
villupuramtraining
 
計算機概論20161205
計算機概論20161205計算機概論20161205
計算機概論20161205
志宇 許
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
DipaliJagtap6
 
How to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS StylingHow to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS Styling
AimeeKyra
 
Hyper Text Markup Language - Presentation.pptx
Hyper Text Markup Language - Presentation.pptxHyper Text Markup Language - Presentation.pptx
Hyper Text Markup Language - Presentation.pptx
vanajaanbarasu
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
Taha Malampatti
 

Similar to Code HTML Lengkap (20)

HTML tags
HTML tagsHTML tags
HTML tags
 
html-tags-chart.pdf
html-tags-chart.pdfhtml-tags-chart.pdf
html-tags-chart.pdf
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
 
Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)
 
PPT-203105353-1.pdf
PPT-203105353-1.pdfPPT-203105353-1.pdf
PPT-203105353-1.pdf
 
Creating HTML Pages
Creating HTML PagesCreating HTML Pages
Creating HTML Pages
 
HTML
HTML HTML
HTML
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
 
Html ppt
Html pptHtml ppt
Html ppt
 
Introduction to Html by Ankitkumar Singh
Introduction to Html by Ankitkumar SinghIntroduction to Html by Ankitkumar Singh
Introduction to Html by Ankitkumar Singh
 
Html
HtmlHtml
Html
 
Html training slide
Html training slideHtml training slide
Html training slide
 
Beginning html
Beginning  htmlBeginning  html
Beginning html
 
Print this
Print thisPrint this
Print this
 
Introduction html
Introduction htmlIntroduction html
Introduction html
 
計算機概論20161205
計算機概論20161205計算機概論20161205
計算機概論20161205
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
How to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS StylingHow to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS Styling
 
Hyper Text Markup Language - Presentation.pptx
Hyper Text Markup Language - Presentation.pptxHyper Text Markup Language - Presentation.pptx
Hyper Text Markup Language - Presentation.pptx
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
 

More from Dian Arifin

Soal Ujian Teori SIM C
Soal Ujian Teori SIM CSoal Ujian Teori SIM C
Soal Ujian Teori SIM C
Dian Arifin
 
Sejarah Ubuntu
Sejarah UbuntuSejarah Ubuntu
Sejarah Ubuntu
Dian Arifin
 
PENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XML
PENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XMLPENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XML
PENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XML
Dian Arifin
 
Pengertian Ip Address
Pengertian Ip AddressPengertian Ip Address
Pengertian Ip Address
Dian Arifin
 
Indikasi Kerusakan Pada Jaringan
Indikasi Kerusakan Pada JaringanIndikasi Kerusakan Pada Jaringan
Indikasi Kerusakan Pada Jaringan
Dian Arifin
 
Laporan Tentang Rangkaian Sistem Kelistrikan
Laporan Tentang Rangkaian Sistem KelistrikanLaporan Tentang Rangkaian Sistem Kelistrikan
Laporan Tentang Rangkaian Sistem Kelistrikan
Dian Arifin
 
Lost One Love
Lost One LoveLost One Love
Lost One Love
Dian Arifin
 
Laporan Perjalanan Study Tour Smk Trisakti Ngawi
Laporan Perjalanan Study Tour Smk Trisakti NgawiLaporan Perjalanan Study Tour Smk Trisakti Ngawi
Laporan Perjalanan Study Tour Smk Trisakti Ngawi
Dian Arifin
 
Biografi victor frankl
Biografi victor franklBiografi victor frankl
Biografi victor frankl
Dian Arifin
 
Tools-Tools Corel Draw
Tools-Tools Corel DrawTools-Tools Corel Draw
Tools-Tools Corel Draw
Dian Arifin
 
Adobe photoshop
Adobe photoshopAdobe photoshop
Adobe photoshop
Dian Arifin
 
Komponen elektronika
Komponen elektronikaKomponen elektronika
Komponen elektronika
Dian Arifin
 

More from Dian Arifin (12)

Soal Ujian Teori SIM C
Soal Ujian Teori SIM CSoal Ujian Teori SIM C
Soal Ujian Teori SIM C
 
Sejarah Ubuntu
Sejarah UbuntuSejarah Ubuntu
Sejarah Ubuntu
 
PENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XML
PENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XMLPENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XML
PENGERTIAN TENTANG PHP, MYSQL, CSS, HTML DAN XML
 
Pengertian Ip Address
Pengertian Ip AddressPengertian Ip Address
Pengertian Ip Address
 
Indikasi Kerusakan Pada Jaringan
Indikasi Kerusakan Pada JaringanIndikasi Kerusakan Pada Jaringan
Indikasi Kerusakan Pada Jaringan
 
Laporan Tentang Rangkaian Sistem Kelistrikan
Laporan Tentang Rangkaian Sistem KelistrikanLaporan Tentang Rangkaian Sistem Kelistrikan
Laporan Tentang Rangkaian Sistem Kelistrikan
 
Lost One Love
Lost One LoveLost One Love
Lost One Love
 
Laporan Perjalanan Study Tour Smk Trisakti Ngawi
Laporan Perjalanan Study Tour Smk Trisakti NgawiLaporan Perjalanan Study Tour Smk Trisakti Ngawi
Laporan Perjalanan Study Tour Smk Trisakti Ngawi
 
Biografi victor frankl
Biografi victor franklBiografi victor frankl
Biografi victor frankl
 
Tools-Tools Corel Draw
Tools-Tools Corel DrawTools-Tools Corel Draw
Tools-Tools Corel Draw
 
Adobe photoshop
Adobe photoshopAdobe photoshop
Adobe photoshop
 
Komponen elektronika
Komponen elektronikaKomponen elektronika
Komponen elektronika
 

Recently uploaded

FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
Globus
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
Vlad Stirbu
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
Peter Spielvogel
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
The Metaverse and AI: how can decision-makers harness the Metaverse for their...
The Metaverse and AI: how can decision-makers harness the Metaverse for their...The Metaverse and AI: how can decision-makers harness the Metaverse for their...
The Metaverse and AI: how can decision-makers harness the Metaverse for their...
Jen Stirrup
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 

Recently uploaded (20)

FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
Enhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZEnhancing Performance with Globus and the Science DMZ
Enhancing Performance with Globus and the Science DMZ
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
The Metaverse and AI: how can decision-makers harness the Metaverse for their...
The Metaverse and AI: how can decision-makers harness the Metaverse for their...The Metaverse and AI: how can decision-makers harness the Metaverse for their...
The Metaverse and AI: how can decision-makers harness the Metaverse for their...
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 

Code HTML Lengkap

  • 1. 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
  • 2. <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” Name: (Tip) Email:
  • 3. value=”” size=”10″><br> Email: <input name=”Email” value=”” size=”10″><br> <center><input type=”submit”></center> </form> <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
  • 4. <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” /> (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)
  • 5. <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” Example 4: (Tip)
  • 6. value=”Clear”> </form> <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” Example 6: (Tip) Select an option: Option 1 Option 2 Option 3 Select an option: Selection 1 Selection 2 Selection 3
  • 7. name=”selection”>Selection 3 <input type=”Submit” value=”Submit”> </form> <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” Nothing will show (Tip)
  • 8. content=”Description of your site”> <meta name=”keywords” content=”keywords describing your site”> <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> 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
  • 9. </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> 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”> Select an option: (Tip) option 1 option 2 option
  • 10. <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> 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
  • 11. 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> 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
  • 12. <td>Row 2</td> </tr> </table> <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 Row 2 Row 2 Row Row 3 Row 3 Row Row 4 Row 4 Row <title> document title <title>Title of your HTML page</title> Title of your web page will be viewable in the title bar. (Tip)
  • 13. <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> Example 1:  List item 1  List item 2 Example 2:  List item 1  List item 2  List item 3  List item 4