HTML5 Application Cache
With HTML5 it is easy to make an offline version of a web application, by creating a
cache manifest file.
What is Application Cache?
HTML5 introduces application cache, which means that a web application is cached, and
accessible without an internet connection.
Application cache gives an application three advantages:
Offline browsing - users can use the application when they're offline
Speed...
You are here: » Home » Posts filed under HTML
HTML5 Application Cache | What is Application Cache? | HTML5 Cache Manifest Example | Cache Manifest Basics | The Manifest File | Updating the Cache
[Read More...]
HTML5 Inline SVG - What is SVG? - SVG Advantag - Browser Supportes - Embed SVG Directly Into HTML Pages - Example - SVG Elements
What is SVG?
SVG stands for Scalable Vector Graphics
SVG is used to define vector-based graphics for the Web
SVG defines the graphics in XML format
SVG graphics do NOT lose any quality if they are zoomed or resized
Every element and every attribute in SVG files can be animated
SVG is a W3C recommendation
SVG Advantages
Advantages of using SVG over other image formats (like JPEG and GIF) are:
SVG images can be created...
HTML5 - New Elements
New Elements in HTML5
The internet has changed a lot since HTML 4.01 became a standard in 1999.
Today, some elements in HTML 4.01 are obsolete, never used, or not used the way they were intended to. These elements are removed or re-written in HTML5.
To better handle today's internet use, HTML5 includes new elements for better structure, better form handling, drawing, and for media content.
New Semantic/Structural Elements
HTML5...
HTML Tutorial Part-5: HTML Paragraph and HTML Text Formatting
Paragraphs are defined with the <p> tag.
Example:<p>This is a paragraph</p>
<p>This is another paragraph</p>
Note: Browsers automatically add an empty line before and after a paragraph.
Don't Forget the End TagMost browsers will display HTML correctly even if you forget the end tag:
Example:<p>This is a paragraph
<p>This is another paragraph
The example above will work in most browsers,...
HTML Tutorial Part-4
HTML HeadingsHeadings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading.
<h1>HTML Headings H1</h1><h2>HTML Headings H2</h2><h3>HTML Headings H3</h3>
Note: Browsers automatically add some empty space (a margin) before and after each heading.Headings Are ImportantUse HTML headings for headings only....
HTML Attributes Reference:
A complete list of legal attributes for each HTML element is listed in our:
DTD: indicates in which HTML 4.01 / XHTML 1.0 DTD the tag is allowed. S=Strict, T=Transitional, and F=Frameset
Tag Description DTD
<!--...--> Defines a comment STF
<!DOCTYPE> Defines the document type STF
<a> Defines an anchor STF
<abbr> Defines an abbreviation STF
<acronym> Defines an acronym STF
<address>...
HTML Tutorial Part-3
HTML Attributes HTML elements can have attributes
Attributes provide additional information about an element
Attributes are always specified in the start tag
Attributes come in name/value pairs like: name="value"Attribute Example:HTML links are defined with the <a> tag. The link address is specified in the href attribute:
<a href="http://www.webtutorial2.blogspot.com">This...
HTML Tutorial Part-2
Editing HTMLHTML can be written and edited using many different editors like Dreamweaver and Visual Studio.
However, in this tutorial we use a plain text editor (like Notepad) to edit HTML. We believe using a plain text editor is the best way to learn HTML.Use Your Test Web For LearningWe suggest you experiment with everything you learn by editing your web files with a text editor (like Notepad).
Note: If your test web contains...
Subscribe to:
Posts (Atom)