Academic Tutorials



English | French | Portugese | German | Italian
Home Advertise Payments Recommended Websites Interview Questions FAQs
News Source Codes E-Books Downloads Jobs Web Hosting
Chats

Web Quality
Web Quality Introduction
Web Quality Standards
HTML Elements
Style Sheets
Web Readability
Web Accessibility
Web Internationalization

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
CSS 1.0
CSS 2.0
HLML
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
CVS
Python
Apple Script
PL/SQL Tutorial
SQL Server
PHP
.NET (dotnet)
Microsoft.Net
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
VC++
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Photoshop Tutorial
Gimp Tutorial
Matlab
Gnuplot Programming
GIF Animation Tutorial
Scientific Visualization Tutorial
Graphics
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Weblogic Tutorial
SEO
Web Site Hosting
Domain Name
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Eclipse
J2ME
JBOSS
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Cobol
Assembly Language
Mainframe
Forth Programming
Lisp Programming
Pascal
Delphi
Fortran
OOPs
Data Warehousing
CGI Programming
Emacs Tutorial
Gnome
ILU
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills
Database Tutorials
Oracle
MySQL
Operating System
BSD
Symbian
Unix
Internet
IP-Masquerading
IPC
MIDI
Software Testing
Testing
Firewalls
SAP Module
ERP
ABAP
Business Warehousing
SAP Basis
Material Management
Sales & Distribution
Human Resource
Netweaver
Customer Relationship Management
Production and Planning
Networking Programming
Corba Tutorial
Networking Tutorial
Microsoft Office
Microsoft Word
Microsoft Outlook
Microsoft PowerPoint
Microsoft Publisher
Microsoft Excel
Microsoft Front Page
Microsoft InfoPath
Microsoft Access
Accounting
Financial Accounting
Managerial Accounting
Network Sites


HTML Elements


Previoushome Next





A <DOCTYPE> Element

a
Designates the start or destination of a hypertext link.
abbr
Inserts an abbreviation into an HTML page.
acronym
Indicates an acronym abbreviation.

A D V E R T I S E M E N T
address
Specifies information, such as address, signature, and authorship, of the current document.
applet
Places executable content on the page.
area
Defines the shape, coordinates, and associated URL of one hyperlink region within a client-side image map.
b
Specifies that the text should be rendered in bold.
base
Specifies an explicit URL used to resolve links and references to external sources such as images and style sheets.
baseFont
Sets a base font value to be used as the default font when rendering text.
bdo
Allows authors to disable the bidirectional algorithm for selected fragments of text.
bgSound
Enables an author to create pages with background sounds or soundtracks.
big
Specifies that the enclosed text should be displayed in a larger font than the current font.
blockQuote
Sets apart a quotation in text.
body
Specifies the beginning and end of the document body.
br
Inserts a line break.
button
Specifies a container for rich HTML that is rendered as a button.
caption
Specifies a brief description for a table.
center
Centers subsequent text and images.
cite
Indicates a citation by rendering text in italic.
code
Specifies a code sample.
col
Specifies column-based defaults for the table properties.
colGroup
Specifies property defaults for a column or group of columns in a table.
comment
Indicates a comment that is not displayed.
custom
Represents a user-defined element.
dd
Indicates the definition in a definition list. The definition is usually indented in the definition list.
del
Indicates text that has been deleted from the document.
dfn
Indicates the defining instance of a term.
dir
Denotes a directory list.
div
Specifies a container that renders HTML.
dl
Denotes a definition list
. dt
Indicates a definition term within a definition list.
em
Emphasizes text, usually by rendering it in italic.
embed
Allows documents of any type to be embedded.
fieldSet
Draws a box around the text and other elements that the field set contains.
font
Specifies a new font, size, and color to be used for rendering the enclosed text.
form
Specifies that the contained controls take part in a form.
frame
Specifies an individual frame within a FRAMESET element.
frameSet
Specifies a frameset, which is used to organize multiple frames and nested framesets.
head
Provides an unordered collection




HTML 4.01 Strict, Transitional, Frameset


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">




XHTML 1.0 Strict, Transitional, Frameset


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">




XHTML 1.1 DTD


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">




The <title> Element

The <title> element is one of the most important HTML elements. Its main function is to describe the content of a web page.

Even if title is not visible part of the web page, it is important to the quality of the web site because it is visible in the following

  • The search engine lists
  • An the windows title bar
  • The users bookmarks
  • The title must be short and descriptive as possible. When the user searches an internet for the web sites, most of the search engines do display the title of web site in the search result. Make sure that the title should match the content user is looking for. Then only the user will click on the link to visit your web site.

    When a user is visiting the website, title will be visible in the windows title bar. Make sure that the title describes the site even when a window is been minimized. After when user has visited the website, the title of the web pages will be stored in the visitors history folder (or in his favorites folder). Do make sure that the title clearly describes a pages for future visit.




    Correct title examples:


    <title>Java Tutorial</title>
    <title>Introduction to Java</title>




    Incorrect title examples:


    <title>Introduction</title>
    <title>Chapter 1</title>




    The Header Element

    An <h1> element is used to describe a top level header of the web page. Since some of the web browsers do display <h1> element in a large font by default, some of the web developers do use a <h2> element instead of <h1> element for the top level headers. This will not confuse reader, if he is person, but it do confuse most of the search engines and the other software which will try to "understand" a structure of web page.

    Make sure that you use <h1> for the top level headers, <h2> and <h3> for the lower levels. Try to structure the web page headers after this template:


    This is the main header

    This is a level 2 header

    Paragraph and sentences. Paragraph and sentences. Paragraph and sentences.

    This is a level 3 header
    Paragraph and sentences. Paragraph and sentences. Paragraph and sentences.
    This is a level 3 header
    Paragraph and sentences. Paragraph and sentences. Paragraph and sentences.



    Be the first one to comment on this page.




      Web Quality eBooks

    No eBooks on Web Quality could be found as of now.

     
     Web Quality FAQs
    More Links » »
     
     Web Quality Interview Questions
    More Links » »
     
     Web Quality Articles

    No Web Quality Articles could be found as of now.

     
     Web Quality News

    No News on Web Quality could be found as of now.

     
     Web Quality Jobs

    No Web Quality Articles could be found as of now.


    Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
    • blinkbits
    • BlinkList
    • blogmarks
    • co.mments
    • connotea
    • del.icio.us
    • De.lirio.us
    • digg
    • Fark
    • feedmelinks
    • Furl
    • LinkaGoGo
    • Ma.gnolia
    • NewsVine
    • Netvouz
    • RawSugar
    • Reddit
    • scuttle
    • Shadows
    • Simpy
    • Smarking
    • Spurl
    • TailRank
    • Wists
    • YahooMyWeb

    Previoushome Next

    Keywords: HTML Elements, html table element, lenntech com periodic chart htm, html dom element, javascript html element, html span element, html label element, periodic lanl gov default htm, www lenntech com periodic chart htm, html style element, html object element, a html element, html element attributes, html option element, chemlab pc maricopa edu periodic periodic html, html element properties, html script element, html element position, html anchor element,

    HTML Quizzes
    HTML Quiz
    XHTML Quiz
    CSS Quiz
    TCP/IP Quiz
    CSS 1.0 Quiz
    CSS 2.0 Quiz
    HLML Quiz
    XML Quizzes
    XML Quiz
    XSL Quiz
    XSLT Quiz
    DTD Quiz
    Schema Quiz
    XForms Quiz
    XSL-FO Quiz
    XML DOM Quiz
    XLink Quiz
    XQuery Quiz
    XPath Quiz
    XPointer Quiz
    RDF Quiz
    SOAP Quiz
    WSDL Quiz
    RSS Quiz
    WAP Quiz
    Web Services Quiz
    Browser Scripting Quizzes
    JavaScript Quiz
    VBScript Quiz
    DHTML Quiz
    HTML DOM Quiz
    WMLScript Quiz
    E4X Quiz
    Server Scripting Quizzes
    ASP Quiz
    PERL Quiz
    SQL Quiz
    ADO Quiz
    CVS Quiz
    Python Quiz
    Apple Script Quiz
    PL/SQL Quiz
    SQL Server Quiz
    PHP Quiz
    .NET (dotnet) Quizzes
    Microsoft.Net Quiz
    ASP.Net Quiz
    .Net Mobile Quiz
    C# : C Sharp Quiz
    ADO.NET Quiz
    VB.NET Quiz
    VC++ Quiz
    Multimedia Quizzes
    SVG Quiz
    Flash Quiz
    Media Quiz
    SMIL Quiz
    Photoshop Quiz
    Gimp Quiz
    Matlab Quiz
    Gnuplot Programming Quiz
    GIF Animation Quiz
    Scientific Visualization Quiz
    Graphics Quiz
    Web Building Quizzes
    Web Browsers Quiz
    Web Hosting Quiz
    W3C Quiz
    Web Building Quiz
    Web Quality Quiz
    Web Semantic Quiz
    Web Careers Quiz
    Weblogic Quiz
    SEO Quiz
    Web Site Hosting Quiz
    Domain Name Quiz
    Java Quizzes
    Java Quiz
    JSP Quiz
    Servlets Quiz
    Struts Quiz
    EJB Quiz
    JMS Quiz
    JMX Quiz
    Eclipse Quiz
    J2ME Quiz
    JBOSS Quiz
    Programming Langauges Quizzes
    C Quiz
    C++ Quiz
    Visual Basic Quiz
    Data Structures Using C Quiz
    Cobol Quiz
    Assembly Language Quiz
    Mainframe Quiz
    Forth Programming Quiz
    Lisp Programming Quiz
    Pascal Quiz
    Delphi Quiz
    Fortran Quiz
    OOPs Quiz
    Data Warehousing Quiz
    CGI Programming Quiz
    Emacs Quiz
    Gnome Quiz
    ILU Quiz
    Soft Skills Quizzes
    Communication Skills Quiz
    Time Management Quiz
    Project Management Quiz
    Team Work Quiz
    Leadership Skills Quiz
    Corporate Communication Quiz
    Negotiation Skills Quiz
    Database Quizzes
    Oracle Quiz
    MySQL Quiz
    Operating System Quizzes
    BSD Quiz
    Symbian Quiz
    Unix Quiz
    Internet Quiz
    IP-Masquerading Quiz
    IPC Quiz
    MIDI Quiz
    Software Testing Quizzes
    Testing Quiz
    Firewalls Quiz
    SAP Module Quizzes
    ERP Quiz
    ABAP Quiz
    Business Warehousing Quiz
    SAP Basis Quiz
    Material Management Quiz
    Sales & Distribution Quiz
    Human Resource Quiz
    Netweaver Quiz
    Customer Relationship Management Quiz
    Production and Planning Quiz
    Networking Programming Quizzes
    Corba Quiz
    Networking Quiz
    Microsoft Office Quizzes
    Microsoft Word Quiz
    Microsoft Outlook Quiz
    Microsoft PowerPoint Quiz
    Microsoft Publisher Quiz
    Microsoft Excel Quiz
    Microsoft Front Page Quiz
    Microsoft InfoPath Quiz
    Microsoft Access Quiz
    Accounting Quizzes
    Financial Accounting Quiz
    Managerial Accounting Quiz
    Testimonials | Contact Us | Link to Us | Site Map
    Copyright ? 2008. Academic Tutorials.com. All rights reserved Privacy Policies | About Us
    Our Portals : Academic Tutorials | Best eBooksworld | Beyond Stats | City Details | Interview Questions | Discussions World | Excellent Mobiles | Free Bangalore | Give Me The Code | Gog Logo | Indian Free Ads | Jobs Assist | New Interview Questions | One Stop FAQs | One Stop GATE | One Stop GRE | One Stop IAS | One Stop MBA | One Stop SAP | One Stop Testing | Webhosting in India | Dedicated Server in India | Sirf Dosti | Source Codes World | Tasty Food | Tech Archive | Testing Interview Questions | Tests World | The Galz | Top Masala | Vyom | Vyom eBooks | Vyom International | Vyom Links | Vyoms | Vyom World | Important Websites
    Copyright ? 2003-2024 Vyom Technosoft Pvt. Ltd., All Rights Reserved.