-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
102 lines (101 loc) · 4.1 KB
/
about.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About BRS | Rent a Bicycle | NITK</title>
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/custom-scrollbar.css">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
</head>
<body>
<!-- <div class="warning" id="warning">
<span>
<div class="close" onclick="close_warning()" title="Use Anyway">
<i class="fa-regular fa-circle-xmark"></i>
</div>
<img src="img/warning-icon.png" alt="warning icon" title="This site is not desktop friendly">
<p>Please open this site on a Mobile device</p>
</span>
</div> -->
<div class="container" id="container">
<header>
<span class="brand-logo">
<a href="index.html"><img src="img/logo.png" alt="BRS Logo"></a>
</span>
<span class="brand-name">
<p>About BRS</p>
</span>
<span class="hamburger" id="hamburger" onclick="open_nav()">
<i class="fa-solid fa-bars"></i>
</span>
<span class="hamburger-close" id="hamburger-close" onclick="close_nav()">
<i class="fa-sharp fa-solid fa-xmark"></i>
</span>
</header>
<nav id="nav" class="nav">
<ul>
<ul>
<li><a href="about.html">About BRS</a></li>
<li><a href="developers.html">Developers</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="support.html" style="color: green"><b>Support Us</b></a></li>
<li>Version 1.1.0</li>
</ul>
</ul>
</nav>
<main>
<span>
<p><b>BRS - Bicycle Rental Services</b></p>
</span>
<span>
<p style="text-align: justify; text-justify: inter-word;">BRS stands for Bicycle Rental Services. It is an Indian bicycle sharing platform, headquartered in Mangalore. The company was founded in 2023 by Rohit Kumar along with his 4 classmates. It currently operates in 3+ college campuses.</p>
</span>
<span>
<p style="text-align: justify; text-justify: inter-word;">Using BRS, Customers can rent a bicycle very easily. BRS has a beautiful User Interface with makes it user friendly to use. Our Aim is to burn less fuel and cycle more.</p>
</span>
<span>
<p style="text-align: justify; text-justify: inter-word;">Happy Cycling! 😃 </p>
</span>
</main>
<div class="bottom-nav" id="bottom-nav">
<span class="home">
<a href="index.html">
<i class="fa-solid fa-house"></i>
<p>Home</p>
</a>
</span>
<span class="qr-code">
<a href="scan.html">
<i class="fa-solid fa-qrcode"></i>
<p>Scan</p>
</a>
</span>
<span class="search">
<span class="circle">
<a href="search.php">
<i class="fa-solid fa-bicycle"></i>
<p>Search</p>
</a>
</span>
</span>
<span class="offers">
<a href="offers.html">
<i class="fa-sharp fa-solid fa-gift"></i>
<p>Offers</p>
</a>
</span>
<span class="account">
<a href="login.php">
<i class="fa-solid fa-user-tie"></i>
<p>Profile</p>
</a>
</span>
</div>
</div>
<script src="js/script.js"></script>
<!-- font awesome icons -->
<script src="https://kit.fontawesome.com/6a8a97f373.js" crossorigin="anonymous"></script>
</body>
</html>