Web fonts
<font> tag in 1995, which was then standardized in the HTML 2 specification. However, the font specified by the tag had to be installed on the user's computer or a fallback font, such as a browser's default sans-serif or monospace font, would be used. The first Cascading Style Sheets specification was published in 1996 and provided the same capabilities.
The CSS2 specification was released in 1998 and attempted to improve the font selection process by adding font matching, synthesis and download. These techniques did not gain much use, and were removed in the CSS2.1 specification. However, Internet Explorer added support for the font downloading feature in version 4.0, released in 1997. Font downloading was later included in the CSS3 fonts module, and has since been implemented in Safari 3.1, Opera 10 and Mozilla Firefox 3.5. This has subsequently increased interest in web typography, as well as the usage of font downloading. (wikipedia)
AJAX based web chat
This tutorial will walk you through the step in order to create an AJAX driven web chat program. This will be a very simple program, but will be expanded upon in future tutorials. You can view the results of the AJAX Driven Web Chat Tutorial here You can download the Source for the AJAX Driven Web Chat Tutorial here Creating the Chat Tables We are going to create two tables for the chat program, but we will only use one...
Flash website
HTML5 Powered Contact Form
In this tutorial, we are going to learn how to create a swanky HTML5 AJAX powered contact form. The form will use some of the new HTML5 input elements and attributes, and will be validated using the browser’s built-in form validation.We will use jQuery and Modernizr to help out with the older browsers, and PHP on the server side to validate the input.
HTML5 techniques you Must Know
1. New DOCTYPE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html> 2. Email Inputs <!DOCTYPE html> <html lang="en"> <head>    <meta charset="utf-8">    <title>untitled</title> </head> <body>    <form action="" method="get">       <label for="email">Email:</label>       <input id="email" name="email" type="email" />       <button type="submit"> Submit Form </button>    </form> </body> </html> 3. Placeholders <input name="email" type="email" placeholder="name@domain.tld" /> google_ad_client = "ca-pub-5735567299003148"; google_ad_slot = "0336277860"; google_ad_width = 300; google_ad_height = 250; View more & more =>









