-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
67 lines (65 loc) · 2.91 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bertha's Deluxe Chocolates</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Oswald:300' rel='stylesheet' type='text/css' />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css' />
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Russo+One" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="mycss.css" />
<script type="text/javascript" src="ajax_populate.js"></script>
<script type="text/javascript" src="shopping_cart.js"></script>
<script type="text/javascript" src="common.js"></script>
</head>
<body>
<div class="jumbotron">
<div class="container text-center">
<h1>Bertha's Deluxe Chocolates</h1>
<p>Let us sweeten your day</p>
</div>
</div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://www.sdsu.edu/">SDSU</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="./cart_details.html">Order Online</a></li>
<li><a href="./about.html">About Us </a></li>
<li class="active"><a href="./contact.html">Contact Us</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a id='cart_a_href' href="./cart_details.html">Your Cart: <span id="count" class="glyphicon glyphicon-shopping-cart"> 0</span></a></li>
</ul>
</div>
</div>
</nav>
<div class="about_data">
<h1>CONTACT US</h1>
<p>we value your business and our relationship with you. we're eagerly listening to all feedback and responses from our customers and would like to be long term partners in your overall development as a chocolate lover..</p>
<h3>Kindly feel free to write to us at:</h3>
<h5>Email: xxxxxxxx@xyz.com</h5>
<br />
<p>SAN DIEGO STATE UNIVERSITY<br />
5500 Campanile Dr, San Diego, CA 92182<br />
Phone: XXX-XXXX-XXXX<br />
E-mail: support@xxxxxx.com<br />
</p>
</div>
<footer class="container-fluid text-center">
<a href="https://www.linkedin.com/in/yogesh-kohli-51795682/" class="footer">@YogeshKohliProfile</a>
</footer>
</body>
</html>