This project is designed to calculate car insurance quotes based on the user's selection of the brand, year, and type of insurance. It utilizes HTML, CSS (including Tailwind CSS), and JavaScript to create an interactive interface and provide real-time results.
-
index.html: Main file containing the website structure, the quote form, and the inclusion of styles and scripts.
-
css/tailwind.css: Style file containing styles generated by Tailwind CSS to format and design the website.
-
css/custom.css: Custom style file adding specific styles to customize the website's appearance.
-
js/app.js: JavaScript file containing the business logic to calculate insurance quotes, manipulate the user interface, and handle events.
|-- car-insurance-quote-project
|-- index.html
|-- css
| |-- tailwind.css
| |-- custom.css
|-- js
|-- app.js
-
Open the
index.html
file in your web browser. -
Fill out the quote form by providing the car brand, year, and selecting the insurance type.
-
Click the "Quote Insurance" button to receive a quote.
If you want to make changes to the appearance or logic of the project, follow these steps:
-
Modify styles in
css/custom.css
to customize the website's appearance. -
Adjust the quote calculation logic in
js/app.js
according to your specific needs.
[TrujiDev]