You are to re-create the following form. Don\'t forget to use CSS. The buttons s
ID: 3754957 • Letter: Y
Question
You are to re-create the following form. Don't forget to use CSS. The buttons should not do anything yet.
Label
Input - text, checkbox, radio, submit
Select
FieldSet
Form
Personal Information Name: First Address: Address 1 City: Address 2 State/Province Choose ZIP/Postal Code Phone Last Subscribe to our mailing list: O Yes O No Mailing List Subscriptions Corporate Press Release Emails Upgrade Software Advertising List | List given to spamers after buyout The only non-cynical list | List to sell to spamers Spam List Send ResetExplanation / Answer
<!DOCTYPE html>
<html>
<head>
<style>
.f1{
background-color:#F5B7B1 ;
}
</style>
</head>
<body>
<form>
<fieldset class="f1">
<legend>Personal Information</legend><br>
Name: <input type="text" placeholder="First"><input type="text" placeholder="Last"><br><br>
Address: <input type="text" placeholder="Address1"><br><br>
City:<input type="text" placeholder="Address2"><br><br>
State/Province:
<select>
<option >Choose</option>
<option >Maharashtra</option>
<option >Gujrat</option>
<option >Goa</option>
<option >Karnataka</option>
</select>
<br><br>
Zip/Postal Code:<input type="text"><br><br>
Phone:<input type="text"><br><br>
</fieldset>
Subscribe to our mailing list:<input type="radio" name="same">Yes <input type="radio" name="same">No
<fieldset class="f1">
<legend>Mailing List Subscriptions</legend><br>
<input type="checkbox" name="c1">Corporate Press Release Emails<br><br>
<input type="checkbox" name="c1"> Upgrade Software Advertising List<br><br>
<input type="checkbox" name="c1"> List given to spamers after buyout<br><br>
<input type="checkbox" name="c1"> The only non-cynical list<br><br>
<input type="checkbox" name="c1"> List to sell to spamers<br><br>
<input type="checkbox" name="c1"> Spam List<br><br>
</fieldset>
<input type="submit" value="send">
<input type="reset" value="Reset">
</form>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.