Question

In: Computer Science

Create an HTML form with the following: 2 text input fields 1 text area 2 radio...

Create an HTML form with the following:

  • 2 text input fields
  • 1 text area
  • 2 radio buttons or 3 checkboxes
  • 1 button
  • Include labels for fields

Solutions

Expert Solution

<!-- HTML Code-->

<HTML>
<HEAD>
<TITLE>
My HTML FORM
</TITLE>
</HEAD>
<BODY>
<label for="text1">Text Input1 </label>
<input type="text" name="firstTextInput">
<br><br>
<label for="text2">Text Input2 </label>
<input type="text" name="secondTextInput">
<br><br>
<textarea name = "txtArea" rows="4" cols="50">
</textarea>
<br><br>
<input type="radio" name="options" id="rd1" value="rd1" >Radio1&nbsp;&nbsp;
<input type="radio" name="options" id="rd2" value="rd2" >Radio2&nbsp;&nbsp;
<br><br>
<input type="checkbox" name="chkOptions" id="chk1" value="chk1" >CheckBox1
<input type="checkbox" name="chkOptions" id="chk2" value="chk2" >CheckBox2
<input type="checkbox" name="chkOptions" id="chk3" value="chk3" >CheckBox3
<br><br>
<input type="button" value="Click Me!">
</BODY>
</HTML>

//If you need any help regarding this solution ......... please leave a comment ........ thanks


Related Solutions

HTML WEBSITE WITH CSS LAYOUT 1. Create a studentregistration form with the following fields: > Email...
HTML WEBSITE WITH CSS LAYOUT 1. Create a studentregistration form with the following fields: > Email Address (Email) > Desired Username (Text box) > Password (Password) > Family name (Text box) > Middle Name/Initial (Text box) > First name (Text box) > Gender (Radio Button - Male or Female only!) > ID Number (Text box) > Mobile Number (Text box) > Landline Number (Text box) > Permanent Home Address (Text box) > Degree/Course (Text box) > Year Level (Drop down...
HTML 5 (Creating an Autocomplete Form with a datalist) Create an autocomplete input element with an...
HTML 5 (Creating an Autocomplete Form with a datalist) Create an autocomplete input element with an associated datalist that contains the days of the week.
log in form Requirements: Form: There should be at least 2 input fields for username and...
log in form Requirements: Form: There should be at least 2 input fields for username and password. Use an array as a database in which there are several usernames and passwords: Usernames can be either emails or nick names (WITHOUT WHITE SPACE) After the user submitted the form, students must: sanitize the inputs check if there is a match with one username and one password in the array. If there is no match, print out an error message to user...
Utilizing PHP and HTML code Create a form that has text inputs for two numbers and...
Utilizing PHP and HTML code Create a form that has text inputs for two numbers and a submit button. Submit the values to a program that calculates and displays the GCD of the two numbers. The greatest common divisor of two integers a and b is the largest integer that is a factor of both a and b. The GCD of any number and 1 is 1, and the GCD of any number and 0 is that number. For example:...
Question 2: Create a very simple temperature converter form having two text fields. The first one...
Question 2: Create a very simple temperature converter form having two text fields. The first one is where the user will enter temperature. The second field is where the computed temperature value is displayed depending on the unit (F or C).
- Create an html form (bank form) and the PHP code with 2 accounts with options...
- Create an html form (bank form) and the PHP code with 2 accounts with options to transfer, deposit or withdraw money.
Create a form using the following HTML elements at a minimum. Style the form in your...
Create a form using the following HTML elements at a minimum. Style the form in your CSS. You do not need to include a form action (i.e. the form doesn't have to do anything - we're designing the front end of the form). textarea textbox input type of "email" select radio button checkbox submit button style at least three elements of your form in your stylesheet, including your submit button Use a comment to delineate the beginning and end of...
//instructions Form: There should be at least 2 input fields for username and password. Use an...
//instructions Form: There should be at least 2 input fields for username and password. Use an array as a database in which there are several usernames and passwords: Usernames can be either emails or nick names (WITHOUT WHITE SPACE) After the user submitted the form, students must: sanitize the inputs check if there is a match with one username and one password in the array. If there is no match, print out an error message to user on the form....
Create a very simple temperature converter form having two text fields. The first one is where...
Create a very simple temperature converter form having two text fields. The first one is where the user will enter temperature. The second field is where the computed temperature value is displayed depending on the unit (F or C).use html and javascript
Create, test, and validate an HTML document that has a form with the following controls: a....
Create, test, and validate an HTML document that has a form with the following controls: a. A text box to collect the user's name b. Four checkboxes, one for each of the following items: i. Four 25-watt light bulbs for $2.39 ii. Eight 25-watt light bulbs for $4.29 iii. Four 25-watt long-life light bulbs for $3.95 iv. Eight 25-watt long-life light bulbs for $7.49 c. A collection of three radio buttons that are labeled as follows: i. Visa ii. Master...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT