SlideShare a Scribd company logo
Tags Description • Meaning • Definition
<a>
ANCHOR tag creates <a href="http://www.fillster.com">link§</a> to other internet
location, or file.
<abbr>
ABBREVIATION tags indicate interpretation of the meaning to the browsers and search
engines for such as kind of abbreviations as "Inc.", "etc.".
<acronym>
ACRONYM tags defines an acronym, like; <acronym title="World Wide
Web">WWW</acronym>.
<address>
ADDRESS tags are used to identify the author's contact information for a section or a
document.
<applet>
APPLET element tags are used to embed and invoke a Java application within an HTML
page.
<area> AREA tag defines a section of an image.
<b> BOLD tag is specifying <b>bold section</b> within the text document.
<base> BASE tag defines information regarding to the links on the page.
<basefont> BASEFONT tags defines changes of all text appearance on the web page.
<bdo>
BDO tag is specifying the direction of text display by overwriting the default value from
Left to Right. <bdo dir="rtl">Right to Left</bdo>
<bgsound>
BGSOUND tag is defining a background sound for a webpage.
<html>
<head>
<bgsound src="JingleBells.wav" loop="3">
</head>
<body>
</body>
</html>
Demo • Example§
<big> BIG tag makes the <big>text larger</big> then the rest of the text.
<blockquote>
BLOCKQUOTE tags
<blockquote>separate a section</blockquote>
of text from the surrounding text.
<blink>
BLINK tags defines text to <blink>blink</blink> repeatedly. Internet Explorer doesn't
support this tag yet.
<body>
<html>
<head>
</head>
<body>
Body tags identify the content of a web page.
</body>
</html>
<br>
Line Break tag is specifying<br>
a new line
<button>
BUTTON tag is used to create a <button type="button">Push Button</button> Push
Button
<caption>
<table>
<caption>CAPTION tag adds a caption to a table.</caption>
<tr>
<td>
</td>
</tr>
</table>
<center> <center>CENTER tags center text, images, etc.</center>
<cite> <cite>CITE tags defines a citation and displaying in italics.</cite>
<code>
CODE tags are used for example, to indicate a code of the current
<code>htmltags.html</code> page.
<col>
COL tags are used to define column properties for table columns.
<table>
<colgroup span="2">
<col width="60" align="left"></col>
<col width="80" align="center"></col>
</colgroup>
<tr>
<td>1st Column</td>
<td>2nd Column</td>
</tr>
</table>
<colgroup> COLGROUP tags are used to define groups of table columns.
<table>
<colgroup span="2">
<col width="60" align="left"></col>
<col width="80" align="center"></col>
</colgroup>
<tr>
<td>1st Column</td>
<td>2nd Column</td>
</tr>
</table>
<dd>
DD tag defines a definition description.
<dl>
<dt>NASA</dt>
<dd>National Aeronautics and Space Administration</dd>
<dt>MBA</dt>
<dd>Master of Business Administration</dd>
</dl>
<dfn> DFN tags emphasize definition, for example; <dfn>PC</dfn>: Personal Computer.
<del> DEL tag indicates <del>deleted text</del>
<dir>
DIR tags define directory lists.
<dir>
<li>First</li>
<li>Second</li>
<li>Third</li>
</dir>
<dl> DL tag defines a definition list.
<dl>
<dt>CSU</dt>
<dd>California State University</dd>
<dt>UN</dt>
<dd
ags Description • Meaning • Definition
<embed>
EMBED tag gives a command to a browser to include a multimedia eleme
video, sound files within a web document.
<embed src="videofile.mov" width="100" height="100">
<embed src="musicfile.mid" width="50" height="50">
Demo • Example§
<em> EM tags <em>emphasize</em> text.
<fieldset> FIELDSET tag creates a form for all elements in it.
<fieldset>Find a rounded-corner box around this text.</fieldset>
<font>
FONT tags attribute text <font face="cursive, serif">font</font>, <font
color="#0000ff">color</font>, and <font size="4">size</font>.
<form>
Form tags define a form.
<form action="contact.html" method="post">
Your Email:
<input type="text" name="visitor-email" maxlength="80" value="
Your Name:
<input type="text" name="visitor-name" maxlength="80" value="
<input type="submit" value="Send" />
</form>
eMail:
Name:
<frame>
Frame tags define each frame within a frameset.
<html>
<head>
<title>Frame Tags in Action</title>
</head>
<noframes>
<body>
<h1>Sorry, your browser doesn't support this feature!</h1>
</body>
</noframes>
<frameset cols="35%, 65%">
<frame src ="/htmlcodes/left-frame.html" />
<frame src ="/htmlcodes/right-frame.html" />
</frameset>
</html>
Demo • Example§
<frameset> FRAMESET tags define a layout of frames.
<html>
<frameset cols="45%, *">
<frame src ="/htmlcodes/left-frame.html" />
<frame src ="/htmlcodes/right-frame.html" />
</frameset>
</html>
Demo • Example§
<h1> - <h6>
H1 - H6 define level 1-6 headers.
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
<head>
Head tags define general information about the document, page title, meta
and links to follow, and other commands to browsers.
<html>
<head>
<title>HTML Tags - Head Tag</title>
<meta name="keywords" content="html tags, head tag" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="javaexample.js" type="text/javascript"></script>
</head>
<body>
</body>
</html>
<hr>
HR tag draws a horizontal break line.
§
Two choices for the same result: <hr> or <hr />
<html> HTML tags contain HTML elements, and give a command to browsers to
document as an HTML document.
<html>
<head>
</head>
<body>
</body>
</html>
<iframe>
iFrame tag creates an inline frame that contains another web page in it.
<img>
IMG tag attributes an image.
<img
src="http://www.fillster.com/images/tutorial.gif" width="60" height="62"
a name for your image" />
<input>
INPUT tags define input fields, check boxes, radio buttons
<form action="contact.html" method="post">
Your Email:
<input type="text" name="visitor-email" maxlength="80" value="
Your Name:
<input type="text" name="visitor-name" maxlength="80" value="
<input type="radio" name="Level" value="Web Designer" />Web D
<input type="radio" name="Level" value="Web Developer" checked
/>Web Developer<br />
<input type="checkbox" name="Computer" value="Windows" />Wi
<input type="checkbox" name="Computer" value="Mac" />Ma
<input type="submit" value="Send" />
</form>
eMail:
Name:
Web Designer
Web Developer
Windows
Mac
<ins> INS tag defines an <ins>inserted text</ins>.
<isindex>
ISINDEX tag defines a single-line input field.
<isindex prompt="Example: ">
Example:
§
<i> <I> tag is specifying <i>italic text</i>.
<kbd> KBD tag stands for <kbd>keyboard text</kbd>.
<label>
LABEL tag defines a label to a form control.
<p>Where do you live?</p>
<form action="">
<input type="radio" name="country" id="us" />
<label for="usa">USA</label><br />
<input type="radio" name="country" id="uk" />
<label for="uk">UK</label>
</form>
Where do you live?
USA
UK
<legend> LEGEND tag assigns a caption in a fieldset element.
<legend>Questionnaire</legend>
<p>Where do you live?</p>
<form action="">
<input type="radio" name="country" id="usa" />
<label for="usa">USA</label><br />
<input type="radio" name="country" id="canada" />
<label for="canada">Canada</label>
</form>
Questionnaire
Where do you live?
USA
Canada
<li>
1 LI tag defines a list of ordered and unordered items.
<ol>
<li>HTML</li>
<li>PHP</li>
<li>JavaScript</li>
</ol>
<ul>
<li>HTML</li>
<li>PHP</li>
<li>JavaScript</li>
</ul>
HTML
2 PHP
3 JavaScript
 HTML
 PHP
 JavaScript
<link>
LINK tag defines a link to an external document, such as External Style Sh
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<marquee>
MARQUEE tags define different movement behaviors.
Demos • Examples§
<menu>  MENU tag defines a menu list.
<menu>
<li>Google</li>
<li>Yahoo</li>
<li>MSN</li>
</menu>
Google
 Yahoo
 MSN
<meta>
META tags are declaring information for the search engine robots and craw
<html>
<head>
<meta name="description" content="Page description goes here.">
<meta name="keywords" content="meta tags, html tags, meta">
</head>
<body>
</body>
</html>
<noframe>
NOFRAME tag is specifying an alternate web page layout for browsers th
frames.
<html>
<head>
<title>Frame Tags in Action</title>
</head>
<noframes>
<body>
<h1>Sorry, your browser doesn't support this feature!</h1>
</body>
</noframes>
<frameset cols="35%, 65%">
<frame src ="/htmlcodes/left-frame.html" />
<frame src ="/htmlcodes/right-frame.html" />
</frameset>
</html>
Demo • Example§
<noscript> NOSCRIPT tag is specifying a "NOSCRIPT" version page layout for brow
support "SCRIPT" version. NOSCRIP tags are used in conjunction with th
VBScript elements.
<script type="text/javascript" language="javascript">
document.write("We are here to learn HTML");
</script>
<noscript>
Sorry, your browser doesn't support JavaScript, VBScript.
</noscript>
>United Nations</dd>
</dl>
<div>
DIV tag is a logical section of a web document.
<div>
<h1>Home Pets</h1>
<p>Cats</p>
<p>Dogs</p>
</div>
<dt>
DT tags defines a definition term.
<dl>
<dt>HTML</dt>
<dd>HyperText Markup Language</dd>
<dt>CSS</dt>
<dd>Cascading Style Sheets</dd>
</dl>
ags Description • Meaning • Definition
<embed>
EMBED tag gives a command to a browser to include a multimedia elements, such as
video, sound files within a web document.
<embed src="videofile.mov" width="100" height="100">
<embed src="musicfile.mid" width="50" height="50">
Demo • Example§
<em> EM tags <em>emphasize</em> text.
<fieldset>
FIELDSET tag creates a form for all elements in it.
<fieldset>Find a rounded-corner box around this text.</fieldset>
<font>
FONT tags attribute text <font face="cursive, serif">font</font>, <font
color="#0000ff">color</font>, and <font size="4">size</font>.
<form> Form tags define a form.
<form action="contact.html" method="post">
Your Email:
<input type="text" name="visitor-email" maxlength="80" value="" /><br />
Your Name:
<input type="text" name="visitor-name" maxlength="80" value="" /><br />
<input type="submit" value="Send" />
</form>
eMail:
Name:
<frame>
Frame tags define each frame within a frameset.
<html>
<head>
<title>Frame Tags in Action</title>
</head>
<noframes>
<body>
<h1>Sorry, your browser doesn't support this feature!</h1>
</body>
</noframes>
<frameset cols="35%, 65%">
<frame src ="/htmlcodes/left-frame.html" />
<frame src ="/htmlcodes/right-frame.html" />
</frameset>
</html>
Demo • Example§
<frameset>
FRAMESET tags define a layout of frames.
<html>
<frameset cols="45%, *">
<frame src ="/htmlcodes/left-frame.html" />
<frame src ="/htmlcodes/right-frame.html" />
</frameset>
</html>
Demo • Example§
<h1> - <h6>
H1 - H6 define level 1-6 headers.
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
<head>
Head tags define general information about the document, page title, meta-tags, scripts
and links to follow, and other commands to browsers.
<html>
<head>
<title>HTML Tags - Head Tag</title>
<meta name="keywords" content="html tags, head tag" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="javaexample.js" type="text/javascript"></script>
</head>
<body>
</body>
</html>
<hr>
HR tag draws a horizontal break line.
§
Two choices for the same result: <hr> or <hr />
<html>
HTML tags contain HTML elements, and give a command to browsers to read the
document as an HTML document.
<html>
<head>
</head>
<body>
</body>
</html>
<iframe>
iFrame tag creates an inline frame that contains another web page in it.
<img> IMG tag attributes an image.
<img
src="http://www.fillster.com/images/tutorial.gif" width="60" height="62" alt="Here write
a name for your image" />
<input>
INPUT tags define input fields, check boxes, radio buttons.
<form action="contact.html" method="post">
Your Email:
<input type="text" name="visitor-email" maxlength="80" value="" /><br />
Your Name:
<input type="text" name="visitor-name" maxlength="80" value="" /><br />
<input type="radio" name="Level" value="Web Designer" />Web Designer<br />
<input type="radio" name="Level" value="Web Developer" checked="checked"
/>Web Developer<br />
<input type="checkbox" name="Computer" value="Windows" />Windows<br />
<input type="checkbox" name="Computer" value="Mac" />Mac<br />
<input type="submit" value="Send" />
</form>
eMail:
Name:
Web Designer
Web Developer
Windows
Mac
<ins> INS tag defines an <ins>inserted text</ins>.
<isindex> ISINDEX tag defines a single-line input field.
<isindex prompt="Example: ">
Example:
§
<i> <I> tag is specifying <i>italic text</i>.
<kbd> KBD tag stands for <kbd>keyboard text</kbd>.
<label>
LABEL tag defines a label to a form control.
<p>Where do you live?</p>
<form action="">
<input type="radio" name="country" id="us" />
<label for="usa">USA</label><br />
<input type="radio" name="country" id="uk" />
<label for="uk">UK</label>
</form>
Where do you live?
USA
UK
<legend>
LEGEND tag assigns a caption in a fieldset element.
<legend>Questionnaire</legend>
<p>Where do you live?</p>
<form action="">
<input type="radio" name="country" id="usa" />
<label for="usa">USA</label><br />
<input type="radio" name="country" id="canada" />
<label for="canada">Canada</label>
</form>
Questionnaire
Where do you live?
USA
Canada
<li> 4 LI tag defines a list of ordered and unordered items.
<ol>
<li>HTML</li>
<li>PHP</li>
<li>JavaScript</li>
</ol>
<ul>
<li>HTML</li>
<li>PHP</li>
<li>JavaScript</li>
</ul>
HTML
5 PHP
6 JavaScript
 HTML
 PHP
 JavaScript
<link>
LINK tag defines a link to an external document, such as External Style Sheets.
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<marquee>
MARQUEE tags define different movement behaviors.
Demos • Examples§
<menu>
 MENU tag defines a menu list.
<menu>
<li>Google</li>
<li>Yahoo</li>
<li>MSN</li>
</menu>
Google
 Yahoo
 MSN
<meta> META tags are declaring information for the search engine robots and crawlers.
<html>
<head>
<meta name="description" content="Page description goes here.">
<meta name="keywords" content="meta tags, html tags, meta">
</head>
<body>
</body>
</html>
<noframe>
NOFRAME tag is specifying an alternate web page layout for browsers that don't support
frames.
<html>
<head>
<title>Frame Tags in Action</title>
</head>
<noframes>
<body>
<h1>Sorry, your browser doesn't support this feature!</h1>
</body>
</noframes>
<frameset cols="35%, 65%">
<frame src ="/htmlcodes/left-frame.html" />
<frame src ="/htmlcodes/right-frame.html" />
</frameset>
</html>
Demo • Example§
<noscript>
NOSCRIPT tag is specifying a "NOSCRIPT" version page layout for browsers that don't
support "SCRIPT" version. NOSCRIP tags are used in conjunction with the JavaScript or
VBScript elements.
<script type="text/javascript" language="javascript">
document.write("We are here to learn HTML");
</script>
<noscript>
Sorry, your browser doesn't support JavaScript, VBScript.
</noscript>

More Related Content

What's hot

HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
IT- 328 Web Administration (Practicals)
IT- 328 Web Administration (Practicals)IT- 328 Web Administration (Practicals)
IT- 328 Web Administration (Practicals)
Dushmanta Nath
 
CSS Selector
CSS SelectorCSS Selector
CSS SelectorCalos Kao
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimediaAfaq Siddiqui
 
Webpages And Dynamic Content
Webpages And Dynamic ContentWebpages And Dynamic Content
Webpages And Dynamic Contentmaycourse
 
3 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 202101053 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 20210105
John Picasso
 
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
Chandima Kulathilake
 
Web designing (2) - CSS Basic Coding
Web designing (2) - CSS Basic CodingWeb designing (2) - CSS Basic Coding
Web designing (2) - CSS Basic Coding
Rabiul robi
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
Pamela Fox
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS
Yaowaluck Promdee
 
Tips for share point branding
Tips for share point brandingTips for share point branding
Tips for share point branding
Vinod Dangudubiyyapu
 
Css
CssCss
Css
CssCss
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Bootstrap share point 2013
Bootstrap share point 2013Bootstrap share point 2013
Bootstrap share point 2013
Vinod Dangudubiyyapu
 
Stylesheets for Online Help - Scott DeLoach, ClickStart
Stylesheets for Online Help - Scott DeLoach, ClickStartStylesheets for Online Help - Scott DeLoach, ClickStart
Stylesheets for Online Help - Scott DeLoach, ClickStart
Scott DeLoach
 

What's hot (19)

HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
 
IT- 328 Web Administration (Practicals)
IT- 328 Web Administration (Practicals)IT- 328 Web Administration (Practicals)
IT- 328 Web Administration (Practicals)
 
CSS Selector
CSS SelectorCSS Selector
CSS Selector
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimedia
 
Webpages And Dynamic Content
Webpages And Dynamic ContentWebpages And Dynamic Content
Webpages And Dynamic Content
 
Using class suffixes
Using class suffixesUsing class suffixes
Using class suffixes
 
3 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 202101053 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 20210105
 
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
UX01 Customization Tour Of SharePoint - APAC Conference Sydney - 2007
 
Web designing (2) - CSS Basic Coding
Web designing (2) - CSS Basic CodingWeb designing (2) - CSS Basic Coding
Web designing (2) - CSS Basic Coding
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
 
Creating a basic joomla
Creating a basic joomlaCreating a basic joomla
Creating a basic joomla
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS
 
Tips for share point branding
Tips for share point brandingTips for share point branding
Tips for share point branding
 
Css
CssCss
Css
 
Css
CssCss
Css
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Bootstrap share point 2013
Bootstrap share point 2013Bootstrap share point 2013
Bootstrap share point 2013
 
CSS_tutorial_2
CSS_tutorial_2CSS_tutorial_2
CSS_tutorial_2
 
Stylesheets for Online Help - Scott DeLoach, ClickStart
Stylesheets for Online Help - Scott DeLoach, ClickStartStylesheets for Online Help - Scott DeLoach, ClickStart
Stylesheets for Online Help - Scott DeLoach, ClickStart
 

Viewers also liked

Lehi en el desierto y el mundo de los jareditas
Lehi en el desierto y el mundo de los jareditasLehi en el desierto y el mundo de los jareditas
Lehi en el desierto y el mundo de los jareditas
pedro dowling
 
Richard Hunt July 2016
Richard Hunt July 2016Richard Hunt July 2016
Richard Hunt July 2016
Richard Hunt
 
Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"
Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"
Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"
Ralf Eggert
 
Tyler Jones Resume new
Tyler Jones Resume newTyler Jones Resume new
Tyler Jones Resume newTyler Jones
 
Test file
Test fileTest file
Test file
Shahed Alam
 
Latest openings on freshjobzstreet.com
Latest openings on freshjobzstreet.comLatest openings on freshjobzstreet.com
Latest openings on freshjobzstreet.com
Freshjobzstreet HR Solutions (www.freshjobzstreet.com)
 
Focus usa brochure
Focus usa   brochureFocus usa   brochure
Focus usa brochureAlex Fiore
 

Viewers also liked (15)

Lehi en el desierto y el mundo de los jareditas
Lehi en el desierto y el mundo de los jareditasLehi en el desierto y el mundo de los jareditas
Lehi en el desierto y el mundo de los jareditas
 
SATHISH SELVARAJ
SATHISH SELVARAJSATHISH SELVARAJ
SATHISH SELVARAJ
 
Juan Petersen 6-18-2015
Juan Petersen 6-18-2015Juan Petersen 6-18-2015
Juan Petersen 6-18-2015
 
Sanjay_Resume_exp_AEM
Sanjay_Resume_exp_AEMSanjay_Resume_exp_AEM
Sanjay_Resume_exp_AEM
 
Altaf_PHP_Developer
Altaf_PHP_DeveloperAltaf_PHP_Developer
Altaf_PHP_Developer
 
Richard Hunt July 2016
Richard Hunt July 2016Richard Hunt July 2016
Richard Hunt July 2016
 
Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"
Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"
Drehbuch zum Talk "Rapid Prototyping mit PHP Frameworks"
 
Tyler Jones Resume new
Tyler Jones Resume newTyler Jones Resume new
Tyler Jones Resume new
 
Siva visual Resume.docx
Siva visual Resume.docxSiva visual Resume.docx
Siva visual Resume.docx
 
Johnson
JohnsonJohnson
Johnson
 
Seyed Salehi
Seyed SalehiSeyed Salehi
Seyed Salehi
 
Test file
Test fileTest file
Test file
 
Latest openings on freshjobzstreet.com
Latest openings on freshjobzstreet.comLatest openings on freshjobzstreet.com
Latest openings on freshjobzstreet.com
 
Focus usa brochure
Focus usa   brochureFocus usa   brochure
Focus usa brochure
 
Jagan_Resume
Jagan_ResumeJagan_Resume
Jagan_Resume
 

Similar to Tags

HTML Tutorials
HTML TutorialsHTML Tutorials
HTML Tutorials
Arvind Kumar
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
Taha Malampatti
 
Html tag list
Html tag listHtml tag list
HTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al BasetHTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al Baset
Abdulla-al Baset
 
HTML 4.0
HTML 4.0HTML 4.0
Html
HtmlHtml
html for beginners
html for beginnershtml for beginners
html for beginners
KIIZAPHILIP
 
The complete-html-cheat-sheet
The complete-html-cheat-sheetThe complete-html-cheat-sheet
The complete-html-cheat-sheet
HARUN PEHLIVAN
 
The complete-html-cheat-sheet
The complete-html-cheat-sheetThe complete-html-cheat-sheet
The complete-html-cheat-sheet
Zafer Galip Ozberk
 
Hf html-cheat-sheet
Hf html-cheat-sheetHf html-cheat-sheet
Hf html-cheat-sheet
HARUN PEHLIVAN
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
 
Industrial training report
Industrial training report Industrial training report
Industrial training report
Akash Kr Sinha
 
Html5, a gentle introduction
Html5, a gentle introduction Html5, a gentle introduction
Html5, a gentle introduction
Diego Scataglini
 
IP - Lecture 6, 7 Chapter-3 (3).ppt
IP - Lecture 6, 7 Chapter-3 (3).pptIP - Lecture 6, 7 Chapter-3 (3).ppt
IP - Lecture 6, 7 Chapter-3 (3).ppt
kassahungebrie
 
Html 5, a gentle introduction
Html 5, a gentle introductionHtml 5, a gentle introduction
Html 5, a gentle introduction
Diego Scataglini
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
Ron Reiter
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
Rahul Bathri
 

Similar to Tags (20)

HTML Tutorials
HTML TutorialsHTML Tutorials
HTML Tutorials
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
 
Html tags describe in bangla
Html tags describe in banglaHtml tags describe in bangla
Html tags describe in bangla
 
Html tag list
Html tag listHtml tag list
Html tag list
 
HTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al BasetHTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al Baset
 
HTML 4.0
HTML 4.0HTML 4.0
HTML 4.0
 
Html
HtmlHtml
Html
 
html for beginners
html for beginnershtml for beginners
html for beginners
 
The complete-html-cheat-sheet
The complete-html-cheat-sheetThe complete-html-cheat-sheet
The complete-html-cheat-sheet
 
The complete-html-cheat-sheet
The complete-html-cheat-sheetThe complete-html-cheat-sheet
The complete-html-cheat-sheet
 
Hf html-cheat-sheet
Hf html-cheat-sheetHf html-cheat-sheet
Hf html-cheat-sheet
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Industrial training report
Industrial training report Industrial training report
Industrial training report
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Html5, a gentle introduction
Html5, a gentle introduction Html5, a gentle introduction
Html5, a gentle introduction
 
IP - Lecture 6, 7 Chapter-3 (3).ppt
IP - Lecture 6, 7 Chapter-3 (3).pptIP - Lecture 6, 7 Chapter-3 (3).ppt
IP - Lecture 6, 7 Chapter-3 (3).ppt
 
Html 5, a gentle introduction
Html 5, a gentle introductionHtml 5, a gentle introduction
Html 5, a gentle introduction
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 

Recently uploaded

The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 

Recently uploaded (20)

The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 

Tags

  • 1. Tags Description • Meaning • Definition <a> ANCHOR tag creates <a href="http://www.fillster.com">link§</a> to other internet location, or file. <abbr> ABBREVIATION tags indicate interpretation of the meaning to the browsers and search engines for such as kind of abbreviations as "Inc.", "etc.". <acronym> ACRONYM tags defines an acronym, like; <acronym title="World Wide Web">WWW</acronym>. <address> ADDRESS tags are used to identify the author's contact information for a section or a document. <applet> APPLET element tags are used to embed and invoke a Java application within an HTML page. <area> AREA tag defines a section of an image. <b> BOLD tag is specifying <b>bold section</b> within the text document. <base> BASE tag defines information regarding to the links on the page. <basefont> BASEFONT tags defines changes of all text appearance on the web page. <bdo> BDO tag is specifying the direction of text display by overwriting the default value from Left to Right. <bdo dir="rtl">Right to Left</bdo> <bgsound> BGSOUND tag is defining a background sound for a webpage. <html> <head> <bgsound src="JingleBells.wav" loop="3"> </head> <body> </body> </html> Demo • Example§ <big> BIG tag makes the <big>text larger</big> then the rest of the text. <blockquote> BLOCKQUOTE tags <blockquote>separate a section</blockquote> of text from the surrounding text. <blink> BLINK tags defines text to <blink>blink</blink> repeatedly. Internet Explorer doesn't support this tag yet.
  • 2. <body> <html> <head> </head> <body> Body tags identify the content of a web page. </body> </html> <br> Line Break tag is specifying<br> a new line <button> BUTTON tag is used to create a <button type="button">Push Button</button> Push Button <caption> <table> <caption>CAPTION tag adds a caption to a table.</caption> <tr> <td> </td> </tr> </table> <center> <center>CENTER tags center text, images, etc.</center> <cite> <cite>CITE tags defines a citation and displaying in italics.</cite> <code> CODE tags are used for example, to indicate a code of the current <code>htmltags.html</code> page. <col> COL tags are used to define column properties for table columns. <table> <colgroup span="2"> <col width="60" align="left"></col> <col width="80" align="center"></col> </colgroup> <tr> <td>1st Column</td> <td>2nd Column</td> </tr> </table> <colgroup> COLGROUP tags are used to define groups of table columns. <table> <colgroup span="2"> <col width="60" align="left"></col> <col width="80" align="center"></col> </colgroup>
  • 3. <tr> <td>1st Column</td> <td>2nd Column</td> </tr> </table> <dd> DD tag defines a definition description. <dl> <dt>NASA</dt> <dd>National Aeronautics and Space Administration</dd> <dt>MBA</dt> <dd>Master of Business Administration</dd> </dl> <dfn> DFN tags emphasize definition, for example; <dfn>PC</dfn>: Personal Computer. <del> DEL tag indicates <del>deleted text</del> <dir> DIR tags define directory lists. <dir> <li>First</li> <li>Second</li> <li>Third</li> </dir> <dl> DL tag defines a definition list. <dl> <dt>CSU</dt> <dd>California State University</dd> <dt>UN</dt> <dd ags Description • Meaning • Definition <embed> EMBED tag gives a command to a browser to include a multimedia eleme video, sound files within a web document. <embed src="videofile.mov" width="100" height="100"> <embed src="musicfile.mid" width="50" height="50"> Demo • Example§ <em> EM tags <em>emphasize</em> text. <fieldset> FIELDSET tag creates a form for all elements in it.
  • 4. <fieldset>Find a rounded-corner box around this text.</fieldset> <font> FONT tags attribute text <font face="cursive, serif">font</font>, <font color="#0000ff">color</font>, and <font size="4">size</font>. <form> Form tags define a form. <form action="contact.html" method="post"> Your Email: <input type="text" name="visitor-email" maxlength="80" value=" Your Name: <input type="text" name="visitor-name" maxlength="80" value=" <input type="submit" value="Send" /> </form> eMail: Name: <frame> Frame tags define each frame within a frameset. <html> <head> <title>Frame Tags in Action</title> </head> <noframes> <body> <h1>Sorry, your browser doesn't support this feature!</h1> </body> </noframes> <frameset cols="35%, 65%"> <frame src ="/htmlcodes/left-frame.html" /> <frame src ="/htmlcodes/right-frame.html" /> </frameset> </html> Demo • Example§ <frameset> FRAMESET tags define a layout of frames.
  • 5. <html> <frameset cols="45%, *"> <frame src ="/htmlcodes/left-frame.html" /> <frame src ="/htmlcodes/right-frame.html" /> </frameset> </html> Demo • Example§ <h1> - <h6> H1 - H6 define level 1-6 headers. <h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6> <head> Head tags define general information about the document, page title, meta and links to follow, and other commands to browsers. <html> <head> <title>HTML Tags - Head Tag</title> <meta name="keywords" content="html tags, head tag" /> <link rel="stylesheet" type="text/css" href="style.css" /> <script src="javaexample.js" type="text/javascript"></script> </head> <body> </body> </html> <hr> HR tag draws a horizontal break line. § Two choices for the same result: <hr> or <hr /> <html> HTML tags contain HTML elements, and give a command to browsers to document as an HTML document. <html> <head> </head> <body> </body>
  • 6. </html> <iframe> iFrame tag creates an inline frame that contains another web page in it. <img> IMG tag attributes an image. <img src="http://www.fillster.com/images/tutorial.gif" width="60" height="62" a name for your image" /> <input> INPUT tags define input fields, check boxes, radio buttons <form action="contact.html" method="post"> Your Email: <input type="text" name="visitor-email" maxlength="80" value=" Your Name: <input type="text" name="visitor-name" maxlength="80" value=" <input type="radio" name="Level" value="Web Designer" />Web D <input type="radio" name="Level" value="Web Developer" checked />Web Developer<br /> <input type="checkbox" name="Computer" value="Windows" />Wi <input type="checkbox" name="Computer" value="Mac" />Ma <input type="submit" value="Send" /> </form> eMail: Name: Web Designer Web Developer Windows Mac <ins> INS tag defines an <ins>inserted text</ins>.
  • 7. <isindex> ISINDEX tag defines a single-line input field. <isindex prompt="Example: "> Example: § <i> <I> tag is specifying <i>italic text</i>. <kbd> KBD tag stands for <kbd>keyboard text</kbd>. <label> LABEL tag defines a label to a form control. <p>Where do you live?</p> <form action=""> <input type="radio" name="country" id="us" /> <label for="usa">USA</label><br /> <input type="radio" name="country" id="uk" /> <label for="uk">UK</label> </form> Where do you live? USA UK <legend> LEGEND tag assigns a caption in a fieldset element. <legend>Questionnaire</legend> <p>Where do you live?</p> <form action=""> <input type="radio" name="country" id="usa" /> <label for="usa">USA</label><br /> <input type="radio" name="country" id="canada" /> <label for="canada">Canada</label> </form> Questionnaire
  • 8. Where do you live? USA Canada <li> 1 LI tag defines a list of ordered and unordered items. <ol> <li>HTML</li> <li>PHP</li> <li>JavaScript</li> </ol> <ul> <li>HTML</li> <li>PHP</li> <li>JavaScript</li> </ul> HTML 2 PHP 3 JavaScript  HTML  PHP  JavaScript <link> LINK tag defines a link to an external document, such as External Style Sh <head> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <marquee> MARQUEE tags define different movement behaviors. Demos • Examples§ <menu>  MENU tag defines a menu list. <menu> <li>Google</li> <li>Yahoo</li>
  • 9. <li>MSN</li> </menu> Google  Yahoo  MSN <meta> META tags are declaring information for the search engine robots and craw <html> <head> <meta name="description" content="Page description goes here."> <meta name="keywords" content="meta tags, html tags, meta"> </head> <body> </body> </html> <noframe> NOFRAME tag is specifying an alternate web page layout for browsers th frames. <html> <head> <title>Frame Tags in Action</title> </head> <noframes> <body> <h1>Sorry, your browser doesn't support this feature!</h1> </body> </noframes> <frameset cols="35%, 65%"> <frame src ="/htmlcodes/left-frame.html" /> <frame src ="/htmlcodes/right-frame.html" /> </frameset> </html> Demo • Example§ <noscript> NOSCRIPT tag is specifying a "NOSCRIPT" version page layout for brow support "SCRIPT" version. NOSCRIP tags are used in conjunction with th VBScript elements. <script type="text/javascript" language="javascript">
  • 10. document.write("We are here to learn HTML"); </script> <noscript> Sorry, your browser doesn't support JavaScript, VBScript. </noscript> >United Nations</dd> </dl> <div> DIV tag is a logical section of a web document. <div> <h1>Home Pets</h1> <p>Cats</p> <p>Dogs</p> </div> <dt> DT tags defines a definition term. <dl> <dt>HTML</dt> <dd>HyperText Markup Language</dd> <dt>CSS</dt> <dd>Cascading Style Sheets</dd> </dl> ags Description • Meaning • Definition <embed> EMBED tag gives a command to a browser to include a multimedia elements, such as video, sound files within a web document. <embed src="videofile.mov" width="100" height="100"> <embed src="musicfile.mid" width="50" height="50"> Demo • Example§ <em> EM tags <em>emphasize</em> text. <fieldset> FIELDSET tag creates a form for all elements in it. <fieldset>Find a rounded-corner box around this text.</fieldset> <font> FONT tags attribute text <font face="cursive, serif">font</font>, <font color="#0000ff">color</font>, and <font size="4">size</font>. <form> Form tags define a form. <form action="contact.html" method="post">
  • 11. Your Email: <input type="text" name="visitor-email" maxlength="80" value="" /><br /> Your Name: <input type="text" name="visitor-name" maxlength="80" value="" /><br /> <input type="submit" value="Send" /> </form> eMail: Name: <frame> Frame tags define each frame within a frameset. <html> <head> <title>Frame Tags in Action</title> </head> <noframes> <body> <h1>Sorry, your browser doesn't support this feature!</h1> </body> </noframes> <frameset cols="35%, 65%"> <frame src ="/htmlcodes/left-frame.html" /> <frame src ="/htmlcodes/right-frame.html" /> </frameset> </html> Demo • Example§ <frameset> FRAMESET tags define a layout of frames. <html> <frameset cols="45%, *"> <frame src ="/htmlcodes/left-frame.html" /> <frame src ="/htmlcodes/right-frame.html" /> </frameset> </html>
  • 12. Demo • Example§ <h1> - <h6> H1 - H6 define level 1-6 headers. <h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6> <head> Head tags define general information about the document, page title, meta-tags, scripts and links to follow, and other commands to browsers. <html> <head> <title>HTML Tags - Head Tag</title> <meta name="keywords" content="html tags, head tag" /> <link rel="stylesheet" type="text/css" href="style.css" /> <script src="javaexample.js" type="text/javascript"></script> </head> <body> </body> </html> <hr> HR tag draws a horizontal break line. § Two choices for the same result: <hr> or <hr /> <html> HTML tags contain HTML elements, and give a command to browsers to read the document as an HTML document. <html> <head> </head> <body> </body> </html> <iframe> iFrame tag creates an inline frame that contains another web page in it. <img> IMG tag attributes an image. <img src="http://www.fillster.com/images/tutorial.gif" width="60" height="62" alt="Here write
  • 13. a name for your image" /> <input> INPUT tags define input fields, check boxes, radio buttons. <form action="contact.html" method="post"> Your Email: <input type="text" name="visitor-email" maxlength="80" value="" /><br /> Your Name: <input type="text" name="visitor-name" maxlength="80" value="" /><br /> <input type="radio" name="Level" value="Web Designer" />Web Designer<br /> <input type="radio" name="Level" value="Web Developer" checked="checked" />Web Developer<br /> <input type="checkbox" name="Computer" value="Windows" />Windows<br /> <input type="checkbox" name="Computer" value="Mac" />Mac<br /> <input type="submit" value="Send" /> </form> eMail: Name: Web Designer Web Developer Windows Mac <ins> INS tag defines an <ins>inserted text</ins>. <isindex> ISINDEX tag defines a single-line input field. <isindex prompt="Example: "> Example: §
  • 14. <i> <I> tag is specifying <i>italic text</i>. <kbd> KBD tag stands for <kbd>keyboard text</kbd>. <label> LABEL tag defines a label to a form control. <p>Where do you live?</p> <form action=""> <input type="radio" name="country" id="us" /> <label for="usa">USA</label><br /> <input type="radio" name="country" id="uk" /> <label for="uk">UK</label> </form> Where do you live? USA UK <legend> LEGEND tag assigns a caption in a fieldset element. <legend>Questionnaire</legend> <p>Where do you live?</p> <form action=""> <input type="radio" name="country" id="usa" /> <label for="usa">USA</label><br /> <input type="radio" name="country" id="canada" /> <label for="canada">Canada</label> </form> Questionnaire Where do you live? USA Canada <li> 4 LI tag defines a list of ordered and unordered items. <ol>
  • 15. <li>HTML</li> <li>PHP</li> <li>JavaScript</li> </ol> <ul> <li>HTML</li> <li>PHP</li> <li>JavaScript</li> </ul> HTML 5 PHP 6 JavaScript  HTML  PHP  JavaScript <link> LINK tag defines a link to an external document, such as External Style Sheets. <head> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <marquee> MARQUEE tags define different movement behaviors. Demos • Examples§ <menu>  MENU tag defines a menu list. <menu> <li>Google</li> <li>Yahoo</li> <li>MSN</li> </menu> Google  Yahoo  MSN <meta> META tags are declaring information for the search engine robots and crawlers.
  • 16. <html> <head> <meta name="description" content="Page description goes here."> <meta name="keywords" content="meta tags, html tags, meta"> </head> <body> </body> </html> <noframe> NOFRAME tag is specifying an alternate web page layout for browsers that don't support frames. <html> <head> <title>Frame Tags in Action</title> </head> <noframes> <body> <h1>Sorry, your browser doesn't support this feature!</h1> </body> </noframes> <frameset cols="35%, 65%"> <frame src ="/htmlcodes/left-frame.html" /> <frame src ="/htmlcodes/right-frame.html" /> </frameset> </html> Demo • Example§ <noscript> NOSCRIPT tag is specifying a "NOSCRIPT" version page layout for browsers that don't support "SCRIPT" version. NOSCRIP tags are used in conjunction with the JavaScript or VBScript elements. <script type="text/javascript" language="javascript"> document.write("We are here to learn HTML"); </script> <noscript> Sorry, your browser doesn't support JavaScript, VBScript. </noscript>