forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (84 loc) · 3.4 KB
/
Copy pathindex.html
File metadata and controls
97 lines (84 loc) · 3.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en" xml:lang="en">
<head>
<title>URBAN BIKE WORKS</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<a href="Index.html">
<h1 class="logo-label white-font">URBAN BIKE WORKS</h1>
</a>
<ul>
<li>
<a href="Index.html" class="white-font"><b>HOME</b></a>
</li>
<li>
<a href="Services.html" class="white-font"><b>SERVICES</b></a>
</li>
<li>
<a href="Dashboard.html" class="white-font"><b>DASHBOARD</b></a>
</li>
<li>
<a href="Bikes.html" class="white-font"><b>BIKES</b></a>
</li>
<li>
<a href="Aboutus.html" class="white-font"><b>ABOUT US</b></a>
</li>
</ul>
</nav>
</header>
<!-- Main content that should be edited -->
<main>
<div class="container">
<div class="image">
<img src="bike-cover.png"
alt="banner"/>
</div>
<div class="text">
<p style="margin-left: 20px;">
Welcome to <b>URBAN BIKE WORKS</b>, your go-to destination for comprehensive two-wheeler service and maintenance. Our new service center is designed for two-wheeler enthusiasts, offering a wide range of affordable services, including routine maintenance, repairs, customization, and genuine parts. Experience the convenience and expertise your beloved two-wheeler deserves with us. Welcome to a new era of two-wheeler service excellence.
</p>
</div>
</div>
<div class="container">
<div class="text">
<div><b>OUR SERVICES</b></div>
<p>
<ul>
<li>
<b>REGULAR MAINTENANCE:</b> Keep your bike in top shape with our routine
maintenance services. From oil changes to brake checks, we've got
you covered.
</li>
<li>
<b>REPAIRS & TROUBLESHOOTING:</b> Got a bike problem? Our skilled
mechanics are here to diagnose and fix it. We specialize in engine
repairs, electrical issues, and more.
</li>
<li>
<b> CUSTOMIZATION:</b> Make your bike uniquely yours with our
customization services. We can help you with custom paint jobs,
accessory installation, and performance enhancements.
</li>
<li>
<b>SAFETY INSPECTIONS:</b> Prioritize safety with our thorough bike
inspections. We'll ensure your bike is road-ready and safe for
your next adventure.
</li>
</ul>
</p>
</p>
</div>
<div class="image">
<img src="cover-2.png"
alt="banner"/>
</div>
</div>
</main>
<footer>
<p>© 2023 URBAN BIKE WORKS</p>
</footer>
</body>
</html>