-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
138 lines (117 loc) · 4.93 KB
/
Copy pathcontactus.html
File metadata and controls
138 lines (117 loc) · 4.93 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Collapsible sidebar using Bootstrap 3</title>
<!-- Bootstrap CSS CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Our Custom CSS -->
<link rel="stylesheet" href="style4.css">
<style type="text/css">
.logo{ color:goldenrod;
font-family:arabic;
font-size:50px;}
h2{ font-family:Monotype Corsiva;
font-size:50px;
}
.kaush{ border:3px solid black;}
</style>
</head>
<body>
<div class="wrapper">
<!-- Sidebar Holder -->
<nav id="sidebar">
<div class="sidebar-header">
<h3>Richie Rich Pvt. Ltd.</h3>
<strong>RR</strong>
</div>
<ul class="list-unstyled components">
<li class="active">
<a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false">
<i class="glyphicon glyphicon-home"></i>
Home Page
</a>
<ul class="collapse list-unstyled" id="homeSubmenu">
<li><a href="home.html">Home </a></li>
</ul>
</li>
<li>
<a href="aboutus.html">
<i class="glyphicon glyphicon-briefcase"></i>
About Us
</a>
<a href="#pageSubmenu" data-toggle="collapse" aria-expanded="false">
<i class="glyphicon glyphicon-duplicate"></i>
Explore
</a>
<ul class="collapse list-unstyled" id="pageSubmenu">
<li><a href="menu.html">Menu</a></li>
</ul>
</li>
<li>
<a href="newlocateus.html">
<i class="glyphicon glyphicon-link"></i>
Locate Us
</a>
</li>
<li>
<a href="#">
<i class="glyphicon glyphicon-send"></i>
Contact Us
</a>
</li>
</ul>
</nav>
<!-- Page Content Holder -->
<div id="content">
<table class="table">
<thead>
<tr>
<td class="col-md-2"><img src="Logo2.jpg" alt="Logo" align="left" width="150px" height="150px"></td>
<th class="col-md-10 logo" >Richie Rich Foods Pvt. Ltd.</th>
</tr>
</thead>
</table>
<nav class="navbar navbar-defaul">
<div class="container-fluid" >
<div class="navbar-header">
<button type="button" id="sidebarCollapse" class="btn btn-info navbar-btn">
<i class="glyphicon glyphicon-align-left"></i>
</button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSfasaTn-L8-CU69k7aGEpl9Qu480Sg4POEbyX01Q7NPyZaXHQ/viewform">Advertise</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLScG-7siIaR9sqTro3frEdhGx2Hlfyof-boVKumPHRBwplICtg/viewform">Catering</a></li>
</ul>
</div>
</div>
</nav>
<h2 align="center" style="font-face:Cooper black">Contact Us</h2>
<h4>Kaushmabhi Outlet</h4>
<p><b>Address : </b> Richie Rich Bakery ,under Kaushambi Metro Station Ghaziabad NCR</p>
<p>NCR Outlet No +91-8130811551</p>
<p>Delhi Customer Care +91-8130811550</p>
<p><i>Email: store.ncr@mrbrownbakery.com</i></p>
<div class="line"></div>
<img src="contactus.jpg" class="kaush">
<div class="line"></div>
</div>
</div>
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<!-- Bootstrap Js CDN -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#sidebarCollapse').on('click', function () {
$('#sidebar').toggleClass('active');
});
});
</script>
</body>
</html>