-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (74 loc) · 3.07 KB
/
index.html
File metadata and controls
82 lines (74 loc) · 3.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<meta content="ie=edge" http-equiv="x-ua-compatible">
<title>Cocktail Web Search Engine</title>
<link href="assets/images/cocktail.ico" rel="icon">
<!-- Font Awesome -->
<link href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Roboto:300,700"
rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="assets/libraries/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="assets/libraries/css/mdb.min.css" rel="stylesheet">
<!-- custom styles -->
<link href="assets/css/style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!--Main layout-->
<div class="view background-landing">
<div class="mask rgba-stylish-strong flex-center">
<div class="container-fluid ">
<div class="row mb-3">
<div class="col-12">
<h3 class="text-center orange-text"><i class="fas fa-cocktail"></i> Welcome to
</h3>
<h1 class="text-white text-center intro">the Cocktail Database</h1>
</div>
</div>
<div class="row mb-3">
<div class="col-12 col-lg-6 mx-auto">
<p class="text-white text-center">Do you have an ingredient? See what you can
mix up!</p>
</div>
<div class="col-12 mx-auto">
<!--link to Search-->
<p class=" text-center">
<a class="btn btn-sm peach-gradient " href="search.html"><i
class="fas fa-search left"></i>
Search</a>
</p>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-6 mx-auto">
<p class="my-1 text-white text-center">Or browse the wide selection in the
database!</p>
</div>
<div class="col-12 mx-auto">
<!--Link to Catalogue-->
<p class="text-center">
<a class="btn btn-sm peach-gradient " href="catalogue.html"><i
class="fas fa-file left"></i>
Catalogue</a>
</p>
</div>
</div>
</div>
</div>
</div>
<!--Main layout-->
<!-- jQuery -->
<script src="assets/libraries/js/jquery.min.js" type="text/javascript"></script>
<!-- Bootstrap tooltips -->
<script src="assets/libraries/js/popper.min.js" type="text/javascript"></script>
<!-- Bootstrap core JavaScript -->
<script src="assets/libraries/js/bootstrap.min.js" type="text/javascript"></script>
<!-- MDB core JavaScript -->
<script src="assets/libraries/js/mdb.min.js" type="text/javascript"></script>
</body>
</html>