Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

Developing Registration Form Using HTML5 and CSS3

Share this post!
 Vote this!

First of all, we’ll need to make sure we have the proper files set for the tutorial. Since this is a basic tutorial, you will only need 2 files, namely “index.html” and “style.css”. Also, make sure that they’re both in the same folder.

Then we’ll need to set-up our HTML5 markup. Just remember, that when we’re using HTML5 we need to use the proper doctype declaration.
The HTML5 markup!

So, let’s begin. Make sure that your index.html file looks like this:1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <link rel="stylesheet" href="./style.css" type="text/css" />
6 <title>HTML5 and CSS3 Registration Form</title>
7 </head>
8 <body>
9 <div id="content">
10 <!-- Content goes here -->
11 </div>
12 </body>
13 </html>


You should know what most of these do. The “content” div also helps us prepare for our form (note that the “content” div is only for this tutorial’s sake. You won’t need to use it on a live environment).

More...

0 comments:

Post a Comment