views:

51

answers:

4

When i design our web-form then i see then my web-form is very small then my web page Because my form have only two field (two text-box two label) How i design it. then he look Beautiful.

+1  A: 

Increase
- font size
- paddings
- textbox size

Reduce
- page size

Or add some nice pictures around... :P

o.k.w
+1  A: 

Bam! Chuck the following CSS into your CSS file. You may change the size of the font but generally all your form elements will now be nice and big.

input,button,select
{
    font-size:18px;
}

or, in your HTML

<style type="text/css">
    input,button,select
    {
        font-size:18px;
    }
</style>
Sam152
+2  A: 

You need to learn about styles and Cascading Style Sheets (CSS). You can use this tutorial for example:

http://www.w3schools.com/css/

Mark Byers
A: 

full example to build web form using css3 and html5 http://bit.ly/brbTDz

Waleed Mohamed