Please help me to figure this out. ~Website building, web coding~ I need to buil
ID: 3870727 • Letter: P
Question
Please help me to figure this out. ~Website building, web coding~
I need to build the website basically looks like this:
Here's some requirements:
a.The form must include inputs for name, address, city, state, zip, phone number, product, shipping method and quantity.
b.Include at least one dropdown list box. The form can be simple – i.e. you can simply make it such that the customer can only choose 1 item of varying quantity. The products you are going to sell are 5 candy products. You will also need a price for each of the items. You may put a price label on the form but you should push the price into the label not ask the user to enter a price. For this exercise the user will only purchase one type of product for each order.
c. Use CSS3 and HTML5 for layout of the components and all formatting for the page.
d. Include the name of your company in the Header area.(use cooltext.com or some other graphics package to create a logo)
e. Include a title tag for the page.
f. All images should have alt and title attributes.
g. Include a background color for the page or a background image. Use CSS to define.
f. Add a button that when clicked it displays a summary with the details of the order. (you may use a listbox control to display the summary)
g. Include a clear, Submit and Confirmation Buttons
Sunglass Barn Add Your order has been placed Phone N Serenget Price Quantity SubmExplanation / Answer
<!DOCTYPE html>
<html>
<body>
<style>
body {background-color: lightGrey;}
</style>
<p>
<b> <h1> <center>
Sunglass Barn </center> </h1></b>.</p>
<form action="/action_page.php">
*Name:<pr>
<input type="text" name="*Name" value=" ">
<pr>
<pre>
</pre>
*Address:<pr>
<input type="text" name="*Address" value=" ">
<pr>
<pre>
</pre>
City:<pr>
<input type="text" name="City" value=" ">
<pr>
<pre>
</pre>
State:<pr>
<input type= "text" name="City" value=" ">
<pr>
<pre>
</pre>
*Zip:<pr>
<input type="text" name="*Zip" value=" ">
<pr>
<pre>
</pre>
Phone number:<pr>
<input type="text" name="Phone number" value=" ">
<pr>
<pre>
</pre>
<form action="/action_page.php">
*Product : <pr>
<select name="Sunglass ">
<option value="volvo">Cats</option>
<option value="saab">Blaze Aviator</option>
<option value="fiat">Aviator Classic</option>
<option value="audi">Outdoorsman Craf</option>
</select>
<br><br>
<pre>
</pre>
Price:<pr>
<input type="text" name="price" value=" ">
<pr>
<pre>
</pre>
*Quality:<pr>
<input type="text" name="*Quality" value=" ">
<pr>
<pre>
</pre>
Shipping Method:<pr>
<input type="text" name="Shipping Method" value=" ">
<pr>
<pre>
</pre>
<input type="submit" value="Confirm">
</form>
<h1 align="left">
<form action="/action_page.php">
<input type="text" name="*Name" value=" Your order has been placed: ">
<pr>
<br>
<input type="submit" value="submit">
</br>
</form>
</h1>
</body>
</html>