HTML5New Elements
New Attributes
Full CSS3 Support
Video and Audio
2D/3D Graphics
Local Storage
Local SQL Database
Web Applications
HTML5 Example:<video controls="controls" height="240" width="320">
<source src="movie.mp4" type="video/mp4"></source>
<source src="movie.ogg" type="video/ogg"></source>
<source src="movie.webm" type="video/webm"></source>
Your browser does not support the...
You are here: » Home » All posts
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...
Subscribe to:
Posts (Atom)