Create a webpage for an online shopping store “Easy Mart”.
1. The webpage should have the heading “Easy Mart” in font “Lucida Console”. The font family property
value is given below.
"Lucida Console", "Courier New", monospace;
2. The webpage should have 1 item on sale (E.g. Sweaters). The item should have 1 line description about
the item. (E.g. The sweater is made of wool and is available in sizes S,M and L)
i. Below the description of the item, there should be a button named “image”
ii. On clicking the “Image” button, load an image of the item (E.g. Sweater image) using the AJAX load
function.
3. Add input box for asking the user to enter the number of pieces to be bought. (E.g. The user wants to buy
10 sweaters)
4. Add another button, “Amount to be paid” below the input box. Using jQuery, add a function for this
button.
5. In the function CalculateAmount()
a. Use the formula
Amount = 200 x number of items
(E.g. the user buys 10 sweaters then amount to be paid is 200 * 10 = 2000)
6. Give the output in an input box on the webpage.
(E.g. The user has to pay Rs.2000 for buying 10 sweaters)
7. Add suitable font color, background color for the webpage.