/    Sign up×
Community /Pin to ProfileBookmark

I need Help, can i have some?

I tryed the “form” TUTORIAL on htmlgoodies but it did not work i came out all wired, it was just a box there was nothing beside it so noone would know what to put in the boxs, and there is something wrong with my raido part and i dont know how to put more then one circul!!
the code i used was

<HTML>
<FORM METHOD=”POST” NAME=”mailto:[email protected]“>
<INPUT TYPE=”text” NAME=”Your Name” SIZE=”30″>
<HR>
<INPUT TYPE=”text” NAME=”E-Mail Address” SIZE=”30″>
<HR>
<INPUT TYPE=”text” NAME=”Age” SIZE=”30″>
<HR>
<INPUT TYPE=”radio” NAME=”” Gender=”Male””Female”>
<HR>
<SELECT NAME=”Time You Spend On The Interet” SIZE=”1″>
<OPTION SELECTED>Once a Week.
<OPTION>Twice A Week.
<OPTION>Once a Day To Reed E-mails.
<OPTION>Once a day to surff the web.
<OPTION>Every Day For a Long Time.
</SELECT>
<HR>
<TEXTAREA NAME=”Abit About yourself” ROWS=10 COLS=60>
</TEXTAREA>
<HR>
<INPUT TYPE=”checkbox” NAME=”Signing_from” VALUE=”Joes_page”>
<HR>
<INPUT TYPE=”submit”>
<INPUT TYPE=”reset”>
</FORM>
<HTML>

can anyone please tell me what is wrong with it?

to post a comment
HTML

3 Comments(s)

Copy linkTweet thisAlerts:
@FangJun 05.2005 — I've changed some of the form elements for you so you can see how to do the rest:
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
&lt;title&gt;Basic HTML&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=us-ascii"&gt;
&lt;meta name="copyright" content="Basic HTML"&gt;
&lt;meta name="keywords" content="Basic HTML"&gt;
&lt;meta name="description" content="HTML template"&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
// all JavaScript here

//--&gt;
&lt;/script&gt;
&lt;style type="text/css"&gt;
&lt;!--
/* cascading style sheet */

--&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form method="post" action="mailto:[email protected]" id="formName" name="formName"&gt;
&lt;div&gt;
&lt;label for="name"&gt;Your Name: &lt;input type="text" id="name" name="name" size="30"&gt;&lt;/label&gt;
&lt;hr&gt;
&lt;input type="text" name="E-Mail Address" size="30"&gt;
&lt;hr&gt;
&lt;input type="text" name="Age" size="30"&gt;
&lt;hr&gt;
&lt;label for="m"&gt;Male: &lt;input type="radio" id="m" name="gender" value="Male"&gt;&lt;/label&gt;
&lt;label for="f"&gt;Female:&lt;input type="radio" id="f" name="gender" value="Female"&gt;&lt;/label&gt;
&lt;hr&gt;
&lt;select name="Time You Spend On The Internet" size="1"&gt;
&lt;option selected&gt;Once a Week.&lt;/option&gt;
&lt;option&gt;Twice a week.&lt;/option&gt;
&lt;option&gt;Once a day To read e-mails.&lt;/option&gt;
&lt;option&gt;Once a day to surf the web.&lt;/option&gt;
&lt;option&gt;Every day for a long time.&lt;/option&gt;
&lt;/select&gt;
&lt;hr&gt;
&lt;textarea name="Abit About yourself" rows="10" cols="60"&gt;
&lt;/textarea&gt;
&lt;hr&gt;
&lt;input type="checkbox" name="Signing_from" value="Joes_page"&gt;
&lt;hr&gt;
&lt;input type="submit"&gt; &lt;input type="reset"&gt;
&lt;/div&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;
Copy linkTweet thisAlerts:
@Andrew_ButlerauthorJun 05.2005 — Ok, i have done some of it and i can figure the rest out! can you help?

[code]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Basic HTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="copyright" content="Basic HTML">
<meta name="keywords" content="Basic HTML">
<meta name="description" content="HTML template">
<script type="text/javascript">
<!--
// all JavaScript here

//-->
</script>
<style type="text/css">
<!--
/* cascading style sheet */

-->
[/CODE]


I have goten most of it done but the text area at the end i want that to come up as the title of it to be "Tell me a bit about yourself" and the end check box to say "Are You A Stargate Fan" and the options to be "Yes" "No".

can you tell me where you learnt html? i did it on htmlgoodies but i am finished it and that was just the basics and i wish to learn more!
Copy linkTweet thisAlerts:
@FangJun 05.2005 — Here's the place to start: http://www.w3schools.com/default.asp
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
&lt;title&gt;Basic HTML&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=us-ascii"&gt;
&lt;meta name="copyright" content="Basic HTML"&gt;
&lt;meta name="keywords" content="Basic HTML"&gt;
&lt;meta name="description" content="HTML template"&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
// all JavaScript here

//--&gt;
&lt;/script&gt;
&lt;style type="text/css"&gt;
&lt;!--
/* cascading style sheet */

--&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form method="post" action="mailto:[email protected]" id="formName" name="formName"&gt;
&lt;div&gt;
&lt;label for="name"&gt;Your Name: &lt;input type="text" id="name" name="name" size="30"&gt;&lt;/label&gt;
&lt;hr&gt;
&lt;input type="text" name="E-Mail Address" size="30"&gt;
&lt;hr&gt;
&lt;input type="text" name="Age" size="30"&gt;
&lt;hr&gt;
&lt;label for="m"&gt;Male: &lt;input type="radio" id="m" name="gender" value="Male"&gt;&lt;/label&gt;
&lt;label for="f"&gt;Female:&lt;input type="radio" id="f" name="gender" value="Female"&gt;&lt;/label&gt;
&lt;hr&gt;
&lt;select name="Time You Spend On The Internet" size="1"&gt;
&lt;option selected&gt;Once a Week.&lt;/option&gt;
&lt;option&gt;Twice a week.&lt;/option&gt;
&lt;option&gt;Once a day To read e-mails.&lt;/option&gt;
&lt;option&gt;Once a day to surf the web.&lt;/option&gt;
&lt;option&gt;Every day for a long time.&lt;/option&gt;
&lt;/select&gt;
&lt;hr&gt;
&lt;label for="personal"&gt;A bit About yourself:&lt;br&gt;&lt;textarea id="personal" name="personal" rows="10" cols="60"&gt;
&lt;/textarea&gt;&lt;/label&gt;
&lt;hr&gt;
Are You A Stargate Fan:&lt;br&gt;
&lt;label for="y"&gt;yes: &lt;input type="radio" id="y" name="fan" value="yes"&gt;&lt;/label&gt;
&lt;label for="n"&gt;no:&lt;input type="radio" id="n" name="fan" value="no"&gt;&lt;/label&gt;
&lt;hr&gt;
&lt;input type="submit"&gt; &lt;input type="reset"&gt;
&lt;/div&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;
×

Success!

Help @Andrew_Butler spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.16,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...