Question

a company. needs you to create an HTML5 page that contains a form with the following...

a company. needs you to create an HTML5 page that contains a form with the following requirements:

  • Appropriate input types and labels for:
  • Full name
  • Email Address
  • Website
  • Check box fields to determine their level of “Epicness” (include a heading that precedes the checkboxes that says “Check boxes that apply to your items:”)
  • Pretty common
  • Emerald
  • Holiday Blue
  • Barney Purple
  • A Submit button (the form doesn’t have to include a valid action attribute)

Styles

Create an external CSS file with the following styles for the page created above:

  • The form should have an appropriate set width (e.g. 500 px)
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Note: Done accordingly. Please comment for further help.

index.html

<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="index.css">

<body>
<div id="form">
   <form accept-charset="UTF-8" action="" autocomplete="off" method="GET" target="_blank">
      <label for="name">Full Name</label><br />
      <input name="name" type="text" /> <br />
  
      <label for="email">Email Address</label><br />
      <input name="email" type="email" /> <br />
  
      <label for="website">Website</label><br />
      <input name="website" type="url" /> <br />
  
      <fieldset>
         <legend>Check boxes that apply to your items:</legend>
         <input name="favorite_pet" type="checkbox" value="Cats" />Pretty common<br /> <input name="favorite_pet" type="checkbox" value="Dogs" />Emerald<br /> <input name="favorite_pet" type="checkbox" value="Birds" />Holiday Blue<br /> <input name="favorite_pet" type="checkbox" value="Birds" />Barney Purple<br />
      </fieldset>
      <br />
  
      <input type="submit" value="Submit now" />
   </form>
</div>
</body>
</html>

index.css

   #form {
   width: 500px;
   }

Output:

Add a comment
Know the answer?
Add Answer to:
a company. needs you to create an HTML5 page that contains a form with the following...
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
  • Create an HTML5 page that contains a form to collect the following data. The text in...

    Create an HTML5 page that contains a form to collect the following data. The text in bold indicates the id value that should be assigned to each html control: Product (drop down list) product – iPad, iPhone 6S, Galaxy 5S, Moto X, and so on Quantity (number) quantity Unit price (number) unit_price Discount (%)(number) discount_rate Date (date)   order_date First Name (text box)   first_name Last Name (text box)   last_name Payment type (drop down list)   payment_type – Visa, Master, Discover, Amex, and...

  • Design an original, professional web site following the specifications listed below. This web sit...

    Design an original, professional web site following the specifications listed below. This web site will be for a business you plan to set up for yourself or for someone else. The following is a detailed list of the requirements for your web site. READ them carefully. Instructions - Web Site Requirements for the web site: General: You will thoroughly test all your pages in more than one browser. All links MUST work. All graphics must show on the page. All...

  • Code for the movies page: <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />...

    Code for the movies page: <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="style.css" /> <title>Daniel's Movie Page</title> </head> <body> <a href="hobbies.html">Hobbies</a> <h1>Movies and Actors</h1> <ol> <li class="ol-list1">Gravity</li> <li>Avenger</li> <li>Marshal</li> <li>Interstellar</li> <li>Dark Knight</li> <li>Superman</li> </ol> <ul> <li class="ul-list1">Robet Downey jr.</li> <li>Sharuk Khan</li> <li>Ranbir Kapoor</li> <li>Sidhhart Malhotra</li> <li>Angela Joli</li> <li>Leonardo DiCaprio/li> </ul> <h2>Favorite Movie</h2> <p> <b>Gravity:</b> The movie portrayed what happens to an astronaut if he/she is pushed away from spaceship.It was terrifying how much...

  • For milestone #1, we will start the CARIT site with three static HTML pages and a...

    For milestone #1, we will start the CARIT site with three static HTML pages and a CSS file. Create a dedicated folder for this project. This folder should contain all related files in this project. The future milestones are cumulative and built directly on top of your prior work. Function/content requirements: A home page named “index.html”, which include these contents at least: Description of the center. You may reference the example sites. Latest news: use list tags; make up some...

  • 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....

  • Read this article. Then write a 250 word response on two of the programs you like...

    Read this article. Then write a 250 word response on two of the programs you like the most. Open source business intelligence software 1. BIRT BIRT is an open source BI program that CloudTweaks says is often viewed as the industry standard. BIRT boasts “over 12 million downloads and over 2.5 million developers across 157 countries.” Its users include heavyweights such as Cisco, S1, and IBM (which is also a BIRT sponsor). They also have maturity going for them, as...

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