How to have image and text side by side:Lots of people are asking how they can put image and text side by side. Just make sure you are using style and classes properly. <html><title>How...
Menu Hover Style Using HTML5 and CSS3

Creating a Menu Hover style with HTML5 and CSS3.
HTML
<html><head> <title>This is Menu</title> <link rel="stylesheet" type="text/css"...
Main Seletors in CSS
There are lots of selectors in CSS but here are 4 main selectors your might need.
Selector.classExample:.introExample with description:Select all the classes with name ="intro"Selector#idExample:#firstnameExample with description:Select all the element id="firstname"
SelectorelementExample:
p/HExample...
Video Tag
This is a new tag for HTML 5. This tag might not work in older browsers. We need some attributes for this tag, Source, Type, Width ,Height and Control. We need to tell the browser where is the source of the video and the type, what type of video the browser should expect. We must control attribute otherwise...
HTML Attributes
All HTML elements can have Attributes. Attributes provides additional information about the element. Attributes are always specified at the start of tag.
The lang Attribute
The language of the document can be declared in <html> tag. The language is declared with lang attribute. Declaring...
A few new tags to learn
There are a lot more tags, but we will just cover few more for now, mostly straightforward to use and you can see the effect in your web page when you use them:
<q> - The q tag is for quote. This has no relationship to the somewhat confusing sing and double quote character, rather it's used when...
Understanding Column Span and Row Span
These 2 features allows you to expend your row and columns across multiple other columns and rows when they would usually be forced to stop. In this tutorial we will learn how to use these attributes.
Why...
MARGIN ATTRIBUTE
Like any other document we can select TOP, BOTTOM, LEFT, RIGHT Margin for HTML document
Here is an example
<HTML><HEAD><TITLE> Example of Margin Attribute </TITLE></HEAD><Body...