Knowledge Base

New tab html code

In HTML, links are defined with the <a> tag: <p> <a href=”http://www.w3schools.com/html/”>Visit our HTML tutorial</a> </p> Example The target attribute specifies where to open the linked document: <p>Open link in a new window or tab: <a href=”http://www.w3schools.com” target=”_blank”>Visit W3Schools!</a></p> Get

Read More

How to create css for specific browsers

Now days design implementation is going to new way. every designer make design cool and responsive. they work on html5 and css3. when we create design sometime design mishmash in different browser. so we can use this technique for different

Read More

CSS3-New-tags

1. Border Radius (Rounded Corners) border-radius     border-top-left-radius     border-top-right-radius     border-bottom-left-radius     border-bottom-right-radius 2. Border Images   border-image     border-image-outset     border-image-repeat     border-image-source     border-image-slice     border-image-width 3. Overflow Properties overflow (minor update from CSS 2.01)     overflow-x

Read More

HTML w3c Validator and HTM5 validator

Dictype: –  direct w3c live url is not working for validator Html : – xmlns=”http://www.w3.org/1999/xhtml is not validator   <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <title>Test</title> </head> <body> <p></p> </body> </html>   HTML5 w3c Validator

Read More

Left align text to center positions in css code

Left align text to center positions in css code

.example { -moz-max-content; text-align:center; width:100%; }