lostnewbie
Programmer
hey I'm totally clueless when it comes to javascript. I made a "joke" quiz for my friends to take and I want to score it but I don't know how. I try looking online for help but a lot of the help is for radio and checkbox forms. My form is text so I don't know how to make it work. Please help me. This is what I got so far:
<html>
<head>
</head>
<body bgcolor="#FFFFFF">
<form name="Do you know me">
<h1>Please answer the question below</h1>
<p>My Name: <input type="text" name="myname"></p>
<p>My Last Name: <input type="text" name="lastname"></p>
<p>My birthday: <input type="text" name="bday"></p>
<p>My favorite color: <input type="text" name="color"></p>
<p>My favorite food: <input type="text" name="food"></p>
<p>My pet name: <input type="text" name="pet"></p>
<p>My crush's name: <input type="text" name="crush"></p>
<p><input type="submit" name="send" value="Send Details"></p>
</form>
</body>
</html>
<html>
<head>
</head>
<body bgcolor="#FFFFFF">
<form name="Do you know me">
<h1>Please answer the question below</h1>
<p>My Name: <input type="text" name="myname"></p>
<p>My Last Name: <input type="text" name="lastname"></p>
<p>My birthday: <input type="text" name="bday"></p>
<p>My favorite color: <input type="text" name="color"></p>
<p>My favorite food: <input type="text" name="food"></p>
<p>My pet name: <input type="text" name="pet"></p>
<p>My crush's name: <input type="text" name="crush"></p>
<p><input type="submit" name="send" value="Send Details"></p>
</form>
</body>
</html>