728x90 Ad Space

Sign Up To The Free Email Newsletter!

Want to get notified whenever we produce the latest content ? Then subscribe now to start receiving hot updates from today.

Showing posts with label Htmal Layout. Show all posts
Showing posts with label Htmal Layout. Show all posts

Monday, October 15, 2012

If there are images in this attachment, they will not be displayed.


Htmal Layout :

Web page layout is  important to make  website look good.

<html>

<body>



<div id="container" style="width:850px">



<div id="header" style="background-color:lightgreen;">

<h1 style="margin-bottom:0;"> Web Page Title type here</h1></div>



<div id="menu" style="background-color:#FFD700;height:650;width:150px;float:left;">

<b>Menu</b><br>

HTML<br>

java<br>

c++</div>



<div id="content" style="background-color:#EEEEEE;height:650px;width:700px;float:left;">

Body Elements Type here</div>



<div id="footer" style="background-color:lightgreen;clear:both;text-align:center;">

Type footer</div>

</div>

</body>

</html>

Text Field

<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form>

Password Field

<form>
Password: <input type="password" name="pwd">
</form>

Radio field

<form>
<input type="radio" name="sex" value="male">Male<br>
<input type="radio" name="sex" value="female">Female
</form>

Checkbox

<form>
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>
<input type="checkbox" name="vehicle" value="Car">I have a car 
</form>

Submit button

<form name="input" action="html_form_action.asp" method="get">
Username: <input type="text" name="user">
<input type="submit" value="Submit">
</form>