http://www.boroday.info/sign-language-browsers/

Questions about HTML?
Right, i am designing websites to help me learn HTML, i have a few questions which i cannot find answers to online.
1. I see many websites, where no matter what, the body centers to the center of the web browser, and when you resize the window it moves like in and out, how can i center my page?
2. How can i learn how to allow visitors to sign in to an account, or create one? I know how to use a server and stuff, i understand it will be something to do with forms, could people explain?
Thank You
ps – I dont mind learning more languages such as if to create forms i have to use js or something, (i have no idea
1. Don’t use
as the align attribute is a deprecated tag. I would style the div with CSS. For example:
div {
width:500px; /* For example *?
margin:0 auto
}
The auto margin above is being applied to the left and right of the div, thus centering it.
2. Yes, as the others have mentioned, you will have to read a little into another programming language such as php or asp (which in turn you’ll have to link to, for example, a MySQL database) to create the action the html form you have built will process. However, the front-end of the form may look something like this:
Hope this helps.
Ralph’s World – Down In The Glen – silent
