-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (77 loc) · 3.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en-PK">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="manifest" href="manifest.json" >
<script type="module" src="script.js" defer></script>
<script type="module" src="loadWorker.js" defer></script>
<title>Asim Traders Limited</title>
</head>
<body>
<h1>Asim Traders Limited</h1>
<div id="displayCars">
<b>Reliability — A Promise of Asim Traders LIMITED</b>
<div id="imageSpan">
<img src="car1.jpeg" alt="A Car To Display" id="carImage1" class="carImages">
<img src="car2.jpeg" alt="A Car To Display" id="carImage2" class="carImages">
<img src="car3.jpeg" alt="A Car To Display" id="carImage3" class="carImages">
</div>
</div>
<div id="buyCars">
<h2>Buy A Car</h2>
<label for="model">Car Model: </label>
<select id="model" name="model" class="carDetails">
<option value="Toyota Corolla">Toyota Corolla</option>
<option value="Ford Focus">Ford Focus</option>
<option value="Honda Civic">Honda Civic</option>
<option value="Nissan Sentra">Nissan Sentra</option>
</select>
<br><br>
<label for="color">Color: </label>
<select id="color" name="color" class="carDetails">
<option value="White">White</option>
<option value="Black">Black</option>
<option value="silver">Silver</option>
<option value="Red">Red</option>
<option value="Blue">Blue</option>
</select>
<br><br>
<label for="year">Year: </label>
<select id="year" name="year" class="carDetails">
<option value="2021">2021</option>
<option value="2022">2022</option>
<option value="2023">2023</option>
<option value="2024">2024</option>
</select>
<br><br>
<button type="button" id="buyCarButton">Buy</button>
</div>
<div id="FAQ">
<h2>Frequently Asked Questions</h2>
<b>How do I purchase a vehicle from Asim Traders Limited?</b>
<q>To purchase a vehicle, please visit our online buying form <a href="#buyCars">here</a>. Select your desired car model, color, and year, and then click the "Buy" button to initiate the purchase process.</q>
<b>What types of vehicles are available for sale?</b>
<q>We specialize in offering a range of high-quality used cars and light motor vehicles. You can explore our current inventory by visiting the online form.</q>
<b>What is the best way to get in touch with Muhammad Asim?</b>
<q>While the primary purchase process is handled through our online form, you can still reach Muhammad Asim for any specific inquiries or assistance. However, most details are managed online.</q>
<b>Can I schedule a test drive?</b>
<q>Yes, you can request a test drive after submitting your vehicle selection through our online form. We will contact you to arrange a convenient time.</q>
<b>What documents do I need to purchase a vehicle?</b>
<q>Please ensure you have a valid driver's license, proof of insurance, and any other relevant documentation ready when completing the purchase online.</q>
<b>Do you offer warranties on your vehicles?</b>
<q>We offer a limited warranty on select vehicles. Detailed information is available during the online purchase process. Please check the vehicle's warranty status when making your selection.</q>
</div>
<p id="about">
Asim Traders Limited is a distinguished entity, renowned for excellence, integrity, and innovation. Delivering unparalleled products and services, the company fosters trust and transparency with discerning clientele.
</p>
<!-- Love Declaration -->
<div id="loveDiv">
<button id="playAudio">♥</button>
<img id="loveImage" src="love.png" alt="I Love You!">
</div>
<audio src="love.m4a" id="loveAudio">Message By Me</audio>
</body>
</html>