Connecting Tech Pros Worldwide Help | Site Map

i am creating a poll for my website

Newbie
 
Join Date: Oct 2009
Posts: 20
#1: 4 Weeks Ago
hi all,

i am creating a poll for my website and i would like some help please.

this is my first time uploading a file so please bare with me.

i have a text file with my so far worked out div code but i doesn't appear to work.

please help me all of you guros out there.

thanks
MusoFreak200
Attached Files
File Type: txt poll.txt (412 Bytes, 9 views)
Dormilich's Avatar
Moderator
 
Join Date: Aug 2008
Location: Leipzig, Germany
Posts: 3,629
#2: 4 Weeks Ago

re: i am creating a poll for my website


first of all you should read a HTML/CSS/Javascript tutorial (the link I posted in the other thread)

some remarks to your code:
Expand|Select|Wrap|Line Numbers
  1. // doctype missing
  2. <html>
  3.     <head>
  4.         <title>Poll of the week</title>
  5.         // content-type/charset missing
  6.         <script type="text/javascript" src="poll.js"></script>
  7.     </head>
  8.  
  9.     <body>
  10.         <div id="poll">
  11.             <h3>Would you like to see movies uploaded to this site?</h3>
  12.             // required attribute "action" missing
  13.             <form>
  14.                 // put the radio button description in a <label>
  15.                 // it’s not XHTML, so /> is invalid
  16.                 Yes: <input type="radio" name="vote" value="0" onclick="getVote(this.value)" />
  17.                 // see above
  18.                 <br />
  19.                 // see above
  20.                 // same value as above?
  21.                 No: <input type="radio" name="vote" value="0" onclick="getVote(this.value)" />
  22.             </form>
  23.         </div>
  24.     </body>
  25. </html>
note: I personally prefer to put all Javascript in an external file. (If you do so from the beginning, you will gain a better understanding of Javascript, although it is more difficult to understand at first)


and another link: http://validator.w3.org (check your code for errors)
Newbie
 
Join Date: Oct 2009
Posts: 20
#3: 4 Weeks Ago

re: i am creating a poll for my website


thanks so much for all of your help...

i have to log off now so thanks again...

cya
MusoFreak200
Reply

Tags
css, html, poll, website


Similar HTML / CSS bytes