Question

Develop an HTML form that should contain your personal information such as Last Name, First Name,...

Develop an HTML form that should contain your personal information such as Last Name, First Name, Address, telephone, sex (option male/female as radio buttons), your hobby (as check boxes: games, photography, travel, etc.), and a submit button

0 0
Add a comment Improve this question Transcribed image text
Answer #1

<fieldset enable> <!-- Set the border of form -->

<legend><h3> Enquiry Form</h3></legend> <!-- Create the Form Name of the border -->

<form action="" >   <!-- Create Action Form -->

<label>Last Name <input type="text"></label><br> <!--Create Text Field -->

<label>First Name <input type="text"></label><br>

<label>Address <textarea name="address" cols="50" rows="5"></textarea></label><br> <!-- Create Text Area -->

<label>Telephone <input type="text"></label><br>

<h4>Sex</h4>

<input type="radio" name="gender" id="male"> <!-- Create Radio button of Sex -->

<label for="m">Male</label>

<input type="radio" name="gender" id="female">

<label for="f">Female</label><br><br>

<p><h4>Hobbies</h4></p> <!--Create Check Box of Hobbies -->

<label> <input type="checkbox"> Games</label><br>

<label> <input type="checkbox"> Photography</label><br>

<label> <input type="checkbox"> Travel</label><br>

<label> <input type="checkbox"> Reading Books</label><br>

<label> <input type="checkbox"> Watching Movies</label><br>

<label> <input type="checkbox"> Collection Stamps</label><br><br>

<input type="Submit"> <!-- Create Button of Submit-->

</form> <!-- End of the Form tag-->

</fieldset>

Add a comment
Know the answer?
Add Answer to:
Develop an HTML form that should contain your personal information such as Last Name, First Name,...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Develop a form in the HTML document containing the following input entries: First Name (use single-line...

    Develop a form in the HTML document containing the following input entries: First Name (use single-line text input) Last Name Gender (use radio buttons) Email Address Telephone Number Sport Interests (use checkbox with at least four different sports items) Preferred Contact Time (use select boxes with Anytime, Morning, Afternoon, and Evening as the four items) Comments (use textarea control) Your page must also include submit and reset buttons! Also use CSS to stylze it and use javascript to validate the...

  • PHP Create an HTML Form that asks for a series of personal information from the user,...

    PHP Create an HTML Form that asks for a series of personal information from the user, and once the user presses the [SUBMIT] button, sends the data to a PHP script that generates HTML code displaying the data entered. The form should have the following fields: First Name (using the text input type) Last Name (using the text input type) E-mail Address (using the email input type) Phone Number (using the tel input type) Date of Birth (using the date...

  • HELP! Event Handling- Develop an event handler to handle onclick Form Validation event when a user...

    HELP! Event Handling- Develop an event handler to handle onclick Form Validation event when a user clicks the submit button on the Survey Form. The event handler should validate the following: o The Name tesxt box should contain only Alphabets. o The Address text boxes should contain only appropriate numeric, alphabet or alphanumeric characters o Make sure at least two checkboxes are checked. o Make sure a radio button option is selected. o The Email Address should be valid. Validate...

  • Create a XHTML document containing a form. The title bar should display “Voting Form”. The form...

    Create a XHTML document containing a form. The title bar should display “Voting Form”. The form should contain the following:   Text boxes to accept the person’s name and e-mail address At least five radio buttons the user can use to vote for a candidate for some office. (You make up some names) Text box for write-in alternative Checkboxes with name and value attributes for these options: o This is the first time I have voted online. o I have periodically...

  • Develop an HTML form that could be used to enter your book information (Books, Authors, and...

    Develop an HTML form that could be used to enter your book information (Books, Authors, and Publishers) start with the HTML/JavaScript template provided Expand upon it! What field information would you enter into a system? Have your form use more then just character text fields ... radio buttons, pick lists, and other elements make your form easier to use and you don't need to do lots of JavaScript checks. What fields would be mandatory ... which could be left blank?...

  • Both codes <!DOCTYPE html> <html> <head> <title>Week 8 Lab - JavaScript DOM and Arrays</title> <meta charset="utf-8">...

    Both codes <!DOCTYPE html> <html> <head> <title>Week 8 Lab - JavaScript DOM and Arrays</title> <meta charset="utf-8"> </head> <body> <h2>Order Form</h2> <form name="orderForm" method="post" action="processForm.html"> <table> <tr> <th colspan="2">Personal Information</th> </tr> <tr> <td>First Name:</td> <td><input type="text" name="firstName" id="firstName" size="30"></td> </tr> <tr> <td>Last Name:</td> <td><input type="text" name="lastName" id="lastName" size="30"></td> </tr> <tr> <td>Address:</td> <td><input type="text" name="address" id="address" size="30"></td> </tr> <tr> <td>City:</td> <td><input type="text" name="city" id="city" size="30"></td> </tr> <tr> <td>Province:</td> <td><select name="province" id="province" size="1"> <option disabled>Select a province</option> <option value="BC">British Columbia</option> <option value="AB">Alberta</option> <option...

  • Develop and test an HTML document that has text boxes for apple (69 cents each), orange...

    Develop and test an HTML document that has text boxes for apple (69 cents each), orange (59 cents each), and banana (49 cents each), along with a Submit button. These text boxes take a number, which is the purchased number of the particular fruit. Add a max property value of 99 and a min property value of 0. Add event handlers using the min and max properties to check on values input through the text boxes of the document to...

  • Form Processing HTML One of the most ubiquitous uses of JavaScript is validating form data on...

    Form Processing HTML One of the most ubiquitous uses of JavaScript is validating form data on the client side before it is submitted to the server. It is done everywhere because it is fast and it gives you a great deal of flexibility in how you handle errors insofar as the GUI is concerned. Attached is an image of some code I wrote (so Blackboard can't mess it up). Some things to notice that will help you with the lab....

  • Complete a SIX webpage using notepad or notepad++ about your favorite hobby that contains the following:...

    Complete a SIX webpage using notepad or notepad++ about your favorite hobby that contains the following: The project should include the following pages: home page form page 4 or more additional pages to render complete coverage a site map – three levels or more (not included in the page count) The pages should contain: a two- or three-column layout CSS must be used for layout one external CSS file will contain formatting for the site (the bulk of css goes...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT