To create a web page to calculate total bill amount with GST from price and GST percentage, using server-side scripts.
Bill = P + (P * GST / 100)
P --> Price (in Rupees)
GST --> GST (in Percentage)
Bill --> Total Bill Amount (in Rupees)
Clone the repository from GitHub.
Create Django Admin project.
Create a New App under the Django Admin project.
Create python programs for views and urls to perform server side processing.
Create a HTML file to implement form based input and output.
Publish the website in the given URL.
The a web page to calculate vehicle mileage and fuel efficiency using server-side scripts is created successfully.