-
Notifications
You must be signed in to change notification settings - Fork 3
/
support_solution.html
144 lines (134 loc) · 5.96 KB
/
support_solution.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!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>Document</title>
<link rel="stylesheet" href="support_solution.css" />
</head>
<body>
<div class="mainContainer">
<div class="navs">
<div class="navbarBody">
<div class="navbarSkeliton">
<div class="simplify">Simplifying Mobility</div>
<div class="rightbtns">
<div class="welcome">Welcome</div>
<b id="login">LOGIN</b>
<b id="signup">SIGN UP</b>
</div>
</div>
</div>
<!-- End of first navbar -->
<!-- start of home solution navbar -->
<div class="secNavbar">
<b id="home">Home</b>
<b id="solution">Solutions</b>
</div>
<!-- end of home solutions -->
<div class="searchNav">
<div class="search">
<img src="IMG_FILE/searchicon.PNG" alt="" />
<input id="se" type="text" placeholder="Enter your search term here..." class="searchinput" />
</div>
<div class="ticket">
<div class="nst">
<img src="IMG_FILE/plusicon.PNG" />
<span>New Support Ticket</span>
</div>
<div class="cts">
<img src="IMG_FILE/waveicon.PNG" />
<span>Check Ticket Status</span>
</div>
</div>
</div>
</div>
<!-- End of search navbar -->
<div class="mainBodyContent">
<div class="subBody">
<div class="heading">
<span>Solution home / FAQs</span>
<h1>Learn about ONN</h1>
</div>
<!-- starting content items -->
<div class="datas">
<div class="dataDiv" id="data1">
<img src="IMG_FILE/bookicon.PNG" />
<div>
<h3>What is ONN Bikes?</h3>
<p>
ONN Bikes is a one-stop solution to your mobility needs, with a huge variety of bikes and plans from daily <br />rentals to long term subscription, We have a plan...
</p>
<span class="date">Tue, 2 Jun, 2020 at 3:42 PM</span>
</div>
</div>
<hr />
<div class="dataDiv" id="data2">
<img src="IMG_FILE/bookicon.PNG" />
<div>
<h3>What are the benefits of using ONN?</h3>
<p>
One of the major benefits of using ONN is freedom from commitments. You can easily explore bikes, and
<br /> choose the duration of relationship with every bike, a..
</p>
<span class="date">Tue, 2 Jun, 2020 at 3:42 PM</span>
</div>
</div>
<hr />
<div class="dataDiv" id="data3">
<img src="IMG_FILE/bookicon.PNG" />
<div>
<h3>What are the bike options available?</h3>
<p>
We both like options hence we bring a huge variety of bikes to choose from. Our offerings are broadly
<br /> classified into our ICE bikes and electric bikes. Ou...
</p>
<span class="date">Tue, 2 Jun, 2020 at 3:43 PM</span>
</div>
</div>
<hr />
<div class="dataDiv" id="data4">
<img src="IMG_FILE/bookicon.PNG" />
<div>
<h3>Where is ONN currently operational?</h3>
<p>
We are currently operational in 5 cities- Bengaluru, Hyderabad, Pune, Jaipur, Mysuru, and Udaipur with our
<br /> electric fleet currently available in Pune. We a...
</p>
<span class="date">Tue, 2 Jun, 2020 at 3:43 PM</span>
</div>
</div>
<hr />
<div class="dataDiv" id="data5">
<img src="IMG_FILE/bookicon.PNG" />
<div>
<h3>Our Usage Policy</h3>
<p>
The usage of our bikes should be in accordance with the Motor Vehicles Act, 1988, and shall not be used for
<br /> any illegal or unlawful purpose. Any costs and c...
</p>
<span class="date">Tue, 2 Jun, 2020 at 3:42 PM</span>
</div>
</div>
<hr />
</div>
<!-- End of content data -->
</div>
<!-- End of content subbodyContents -->
</div>
<!-- End of content mainbodyContents -->
<div class="footer">
<div class="mainF">
<b class="h">Home</b>
<b class="s">- Solutions</b>
<b class="c">Cookie policy</b>
</div>
<div class="help">
<b class="h2"> Help Desk Software</b><b class="f2"> by Freshdesk</b>
</div>
</div>
<!-- End of footer div -->
</div>
</body>
</html>