-
Notifications
You must be signed in to change notification settings - Fork 0
/
cab.html
143 lines (94 loc) · 4.94 KB
/
cab.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/cab.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link rel="stylesheet" href="https://daneden.github.io/animate.css/animate.min.css">
<title>Cab Details</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script type="text/javascript" src="css/faq.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function () {
$("#accordion").accordion({
collapsible: true
});
});
</script>
</head>
<body id="bg">
<header id="header" class="header-inner-pages">
<div class="container">
<div class="logo float-left">
<h1 class="text-light"><a href="index.html" class="scrollto"><span>NU-Connect</span></a></h1>
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="http://localhost/NUFZ/index.php">Food Zone</a></li>
<li><a href="virtual.html">Virtual Tour</a></li>
<li class="drop-down"><a href="">Other Services</a>
<ul>
<li><a href="fplaces.html">Places Near Me</a>
</li>
<li class="active"><a href="#">Cab Details</a></li>
<li><a href="upcomingevents.html">Upcomming Events</a></li>
</ul>
</li>
<li><a href="team.html">Team</a></li>
<li><a href="#">FAQ | Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<!-- Header ends-->
<!-- Main content starts -->
<div class="container">
<h1 class="text-white title animated flipInX slow">CAB DETAILS</h1>
<h2> </h2>
<h1 class="cont"><center><b>CAB DETAILS</b></center></h1>
<div class="row mt-5">
<!-- Controllers-->
<div class="controller-container"><span class="controller is_current" id="big">BIG CARD</span><span class="controller" id="medium">MEDIUM CARD</span><span class="controller" id="small">SMALL CARD</span></div>
<div class="card card--big">
<div class="card__image" style="background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcS5xzbSynJTAijXwfBvjUArwvZMndRocUe212gkBqzEeYVvFNtm&usqp=CAU)"></div>
<h2 class="card__title">Joshi Rental Service</h2><span class="card__subtitle">By Matt</span>
<p class="card__text">This service is provided by our college at minimal charges and all drivers are curated personally by nu staff members.</p>
<div class="card__action-bar">
<button class="card__button"><a href="tel:9582353443">CONTACT</a></button>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row mt-5">
<!-- Controllers-->
<div class="controller-container"><span class="controller is_current" id="big">BIG CARD</span><span class="controller" id="medium">MEDIUM CARD</span><span class="controller" id="small">SMALL CARD</span></div>
<div class="card card--big">
<div class="card__image" style="background-image: url(https://www.hindustantimes.com/rf/image_size_960x540/HT/p2/2016/12/26/Pictures/_43a06212-cb3a-11e6-a1a7-f672457d0d7f.png)"></div>
<h2 class="card__title">Rental Service</h2><span class="card__subtitle">By Matt</span>
<p class="card__text">This service is provided by our college at minimal charges and all drivers are curated personally by nu staff members.</p>
<div class="card__action-bar">
<button class="card__button"><a href="tel:9582353443">CONTACT</a></button>
</div>
</div>
</div>
</div>
<!-- Main content Ends -->
<!-- Footer starts -->
<footer id="footer" class="section-bg">
<div class="container">
<div class="copyright">
© Copyright <strong>NU-Connect</strong>. All Rights Reserved
</div>
</div>
</footer>
</body>
</html>