ticket reservation form html source code
#1

i am Nivi i would like to get details on ticket reservation form html source code ..My friend Justin said ticket reservation form html source code will be available here and now i am living at and i last studied int the college and now am doing B.Tech IT i need help on ticket resveration form
Reply
#2
<HTML><BODY>
<H1>RESERVATION FORM</H1>
<P>NAME<INPUT TYPE="TEXT" SIZE="20" MAXLENGTH="99" />
<P>AGE<INPUT TYPE="TEXT" SIZE="12" MAXLENGTH="99" />
<P>ADDRESS<INPUT

<TYPE="TEXT" SIZE="42" MAXLENGTH="99" />
<P>EMAIL<INPUT TYPE="TEXT" SIZE="30" MAXLENGTH="99" />
<P>TELEPHONE<INPUT TYPE="TEXT" SIZE="10" MAXLENGTH="99" />
<P>SELECT YOUR

BERTH
<SELECT NAME="CHOICES" SIZE="3">
<OPTION>TATKAL</OPTION>
<OPTION>LADIES</OPTION>
<OPTION>GENRAL</OPTION>
</SELECT></P>
<P>CITY<SELECT naME="CITY"><OPTION SELECTED>

DELHI</OPTION><OPTION>MUMBAI</OPTION><OPTION>KOLKATA</OPTION><OPTION>CHENNAI</OPTION></p><br><br>
<input type="submit" value="click here to submit" />
<input

type="reset" value="clear this form" /></BODY></HTML>
beginner html form
shareimprove this question
edited Mar 20 '14 at 2:17
asked Mar 18 '14 at 4:00
user38941
2
"What should I do to add attractive looks" - Add a CSS stylesheet – ChrisW Mar 18 '14 at 5:14
2
"What should I do to upload the input data somewhere, so that I could read it?"- Put the form on a web server, so that users can load the form in their web browser using HTTP. You'll also need a <form> element in the page. – ChrisW Mar 18 '14 at 5:17
add a comment
2 Answers
active oldest votes
up vote
11
down vote
The most obvious mistake — which makes your code malformed HTML — is the extra < before TYPE:

<P>ADDRESS<INPUT

<TYPE="TEXT" … />
The next biggest issue, in my opinion, is that your <P> tags aren't consistently being closed. Only in the earliest days of HTML was it acceptable to use an unclosed <P> as a line break. These days, it's generally accepted that paragraphs should lie between <P> and </P>.

The next thing you should do is to add a doctype declaration at the very beginning, which tells the browser which version of the HTML standard is being used. Without the doctype, browsers will interpret the document in slightly non-standard ways, especially if you use CSS. If you have no preference for any particular doctype, use HTML5:

<!DOCTYPE html>
<html>
...
</html>
Once you have declared a doctype, you can then run the code through an HTML validator, which will tell you everything else that is syntactially incorrect. For example, it's OK to say

<option selected="selected">...</option
or

<option selected>...</option>
but not

<option selected="true">
HTML is case-insensitive, but you should choose either uppercase or lowercase consistently anyway. Since XHTML mandates lowercase, I recommend using lowercase everywhere too, even if you are using HTML instead of XHTML.
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: html source code for admission form, source code for air ticket reservation system using html, project making of online train ticket reservation html, html reservation form source code, html coding for railway reservation ticket, html codefor train ticket reservation, java code for workshop reservation form,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  voice vased email system source code 0 3,144 20-04-2021, 07:59 AM
Last Post:
  Train Ticket 0 1,879 26-11-2020, 12:26 AM
Last Post:
  ns2 source codes free download for hello flood attack 0 2,852 31-10-2018, 02:42 PM
Last Post: Guest
  bus ticket reservation project pdf 0 1,476 23-10-2018, 10:01 PM
Last Post: Guest
  voice based email for blinds source code 0 726 22-10-2018, 05:12 PM
Last Post: Guest
  qtp flight reservation application download 0 591 22-10-2018, 12:08 PM
Last Post: Guest
  source code for blood group detection in matlab 0 6,649 22-10-2018, 10:59 AM
Last Post: Guest
  voice based email for blinds source code 0 715 21-10-2018, 07:58 PM
Last Post: Guest
  voice based email for blinds source code 0 649 21-10-2018, 07:43 PM
Last Post: Guest
  latest irctc ticket format in ms word 0 6,730 17-10-2018, 01:58 PM
Last Post: Guest

Forum Jump: