-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MakeMyChoice</title>
<link href='https://fonts.googleapis.com/css?family=Roboto'
rel='stylesheet'
type='text/css'>
<!-- Bootstrap -->
<link rel="stylesheet"
href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/mycss.css">
<link rel="stylesheet" href="css/setter.css">
</head>
<body>
<div class="search-nav green_white shadow">
<h1 class="title"> MakeMyChoice </h1>
<div class="search_bar hidden">
<input type="text"
class="form-control search_input green_white"
placeholder="Search...">
</div>
<button class="search btn green_white btn-custom pull-right search_button"
type="button"
id="btn-1">
<svg class="icon-search">
<use xlink:href="./img/icons.svg#icon-search"></use>
</svg>
</button>
<button class="btn green_white btn-custom pull-right search_button hidden"
type="button"
id="btn-2">
<svg class="icon-search">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="./img/icons.svg#icon-logo-black">
</use>
</svg>
</button>
<button class="btn green_white btn-custom pull-right search_button hidden"
type="button"
id="btn-3">
<svg class="icon-search">
<use xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="./img/icons.svg#icon-logo-black">
</use>
</svg>
</button>
</div>
<div class='overlay'>
<div class="autocomplete-section"></div>
<div class="products-container"></div>
<div class="setter"></div>
</div>
<script src="node_modules/lodash/lodash.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/myjs.js"></script>
<script type="text/javascript" src="js/choose-the-best.js"></script>
</body>
</html>