-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsparePartSeller.html
37 lines (32 loc) · 1.3 KB
/
sparePartSeller.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mechanic Details</title>
<link rel="stylesheet" href="css/sparePartSeller.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<!-- navigation start -->
<a href="home.html"><img src="images/logo.png" class="logo" alt="image" width="100px" height="50px"></a>
<div class="topnav" id="myTopnav">
<a href="mechanicForAll.html"><b>Mechanic For All</b></a>
<a href="sparePartSeller.html"><b>Spare Part Seller</b></a>
<a href="petrolPump.html"><b>Petrol Pump</b></a>
<a href="login.html" class="active"><b>Login</b></a>
<div class="dropdown">
<button class="dropbtn active"><b>Register</b>
<i class="fa fa-caret-down active"></i>
</button>
<div class="dropdown-content">
<a href="register/registration_customer.html">As a Customer</a>
<a href="register/registration_service.html">As an Service Provider</a>
</div>
</div>
</div>
<!-- navigation end -->
<hr>
</body>
</html>