-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (78 loc) · 3.02 KB
/
index.html
File metadata and controls
78 lines (78 loc) · 3.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pre-Owned Bike Price Prediction</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<h1>Pre-Owned Bike Price Prediction</h1>
</div>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="prediction.html">Prediction</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h2>Find the Right Price for Your Pre-Owned Bike</h2>
<p>Accurate, reliable, and easy-to-use bike price predictions at your fingertips.</p>
<a href="prediction.html" class="cta-button">Get Started</a>
</section>
<section id="about" class="info-section">
<h2>About Us</h2>
<p>We specialize in providing accurate price predictions for pre-owned bikes using advanced algorithms and extensive data analysis. Our service helps you get the best value for your bike, whether you are buying or selling.</p>
</section>
<section id="services" class="info-section">
<h2>Our Services</h2>
<ul>
<li>Price Prediction for Pre-Owned Bikes</li>
<li>Market Analysis</li>
<li>Bike Valuation Reports</li>
</ul>
</section>
<section id="contact" class="info-section">
<h2>Contact Us</h2>
<p>Email: support@bikepricepredictor.com</p>
<p>Phone: +123-456-7890</p>
</section>
</main>
<!-- Custom Alert Box -->
<div id="customAlert" class="alert">
<div class="alert-content">
<span class="close">×</span>
<p id="alertMessage">This is a custom alert box!</p>
<button id="option1">Okay, Thank you!</button>
<button id="option2">See Recommendations</button>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<div class="footer-logo">
<h2>Backbencher's Binary Solution</h2>
</div>
<div class="footer-social">
<a href="https://facebook.com" target="_blank" class="social-link">
<img src="facebook.png" alt="Facebook">
</a>
<a href="https://twitter.com" target="_blank" class="social-link">
<img src="twitter.png" alt="Twitter">
</a>
<a href="https://instagram.com" target="_blank" class="social-link">
<img src="Instagram_icon.png.webp" alt="Instagram">
</a>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="script.js"></script>
</body>
</html>