-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (47 loc) · 2.54 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Set title -->
<title>Restaurant Ordering App</title>
<!-- Latest compiled and minified CSS Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Enable Google OAuth API for sign in -->
<script src="https://apis.google.com/js/platform.js" async defer></script>
<meta name="google-signin-client_id" content="436284681417-gnns65dasicsl1719kbqacgnt1vd57da.apps.googleusercontent.com">
<!-- Enable AWS Cloud Services API -->
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.7.16.min.js"></script>
<!-- Enable JQuery -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Include the script for index.html -->
<script src="/scripts/main.js" type="text/javascript" ></script>
</head>
<body>
<div class="container">
<div id = "requestLogin" class="alert alert-warning" role="alert">
<strong>
Sign in to order some yummy food!
</strong>
<div class="g-signin2" data-onsuccess="onSignIn" aria-label="Sign in with Google"><span aria-hidden="true">×</span></div>
</div>
<h1>MELBOURNE DELIGHT FOOD SERVICES <small>Order anywhere, anytime</small></h1>
<p><br/></p>
<h2></h2>
<h4 class="jumbotron text-center">
<p>We are a food service company in Melbourne, first established in 1998.</p>
<p>We aim to provide you the best food around Victoria, with high quality and fast service.</p>
<p> Contact us on 0400-0000-0000.</p>
</h4>
<!-- Define components in the footer -->
<div class="col-lg-12">
<div class="footer">
<p>© <a href="http://google.com" target="_blank">Copyright Nhi Huynh and Radhika Zawar 2019</a></p>
</div>
</div>
</div>
</body>
</html>