Computer problems,Computer help
*AX SOFT>>>Programming & Design

Html experts please help me out?


i have no idea about html and javascript.. i have to design a simple webpage.. and i got only like 3 hours to prepare for it.. so in that webpage i gotta put a heading called" register here" in bold.. then gotta put a few fields below it like name, password ,branch etc... beside name and password there should be a box.. i should check the condition for invalid name .. and when password is entered it should be encrypted.. and the branch should have a pull down menu with three options (cs,is,ec) where one can be selected..
there should be a submit button below which should hyperlink to another webpage.. this other webpage should have an image in it(any image)
i am new to html or javascript.. so dunno how i can manage to study it in just 3 hours.. can someone please give me some ideas and help me out!! thanks a lot!! :)

You won't become a web developer in 3 hours, but here's a head start...

(Yahoo's mangling the code a little though!)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-...
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type"
content="text/html;charset=iso-8859-1" />
<title>Register here</title>

<script type="text/javascript">
// <![CDATA[
function Start() {
var r=document.getElementById("register");
r.onclick=Check;
}
function Check() {
var n=document.getElementById("name");
return !(n.value=="");
}
window.onload=Start;
// ]]>
</script>

</head>
<body>

<form id="register" action="nextpage.html" method="post">

<fieldset>
<legend>Register here</legend>

<div>
<label for="name">Name:</label>
<input type="text" id="name" name="name" />
</div>

<div>
<label for="password">Password:</label>
<input type="password" id="password" name="password" />
</div>

<div>
<label for="branch">Branch:</label>
<select id="branch" name="branch">
<option value="cs">cs</option>
<option value="is">is</option>
<option value="ec">ec</option>
</select>
</div>

<div>
<input type="submit" />
</div>

</form>

</body>
</html>

You wont learn this in 3 hours......but, i would advise that you find a similar page on the web, right click on it and select view source......looking at the code and the displayed page together will give you a big hint on how it works and you can probably then modify the code to make it do what you want

Look on w3schools.com for tutorials on all you asked for. They are quite easy to follow.

You can find all that info at www.lissaexplains.com and www.w3schools.com

They provide example code so its just a matter of finding the code you need e.g. drop down boxes, input boxes and validation javascript and then copying the code they provide and editing it to suit your purpose.

However, next time try get some practice in before your 3 hours away from needing to complete it lol it'd be less stressful right?

Tags
  General - Computers & Internet   Software   Security   Programming & Design   Facebook   Flickr   Google   MSN   MySpace
Related information
  • I am a good c++ programmer and would like to know if anybody wants to develop any kind of game (cons. or onl.)

    You can register at freelance website like ...

  • Website counters?

    Look for this at your Web Host site.

    ...
  • I am doin a project ...i need to get some help on dsp programmin....can anyone help...?

    May be you can search at project assignment help website like ...

  • Best webhosting service?

    There is a lot to consider when choosing a host besides just bandwidth and file storage space (as I'm sure you know by now). I've also noticed that all the big companies (including the on...

  • How do I make a search bar for my own html site?

    ...

  • How can I make my PHP document render CSS styles from an external stylesheet?

    <link rel="stylesheet" href="stylesheets.css" type="text/css" media="screen" /> <?php // php code here ?> Thats all their is to it. I...

  • How can i download 3d buildings and 3d airport for free?

    It depends on for what program you want it. Google is marvalous ;) example search: Free 3d studio max models

    ...
  • Can you tell me what is my mistake, and how can i fix it?

    I don't quite see what you are doing with the whole cin bit etc. I'll make you a MUCH improved code ;) float ans; for(float i=1;i<=20;i++){ ans = 1/i; cout << "1/&qu...

  •  

    Categories--Copyright/IP Policy--Contact Webmaster