-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (69 loc) · 3.33 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
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<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>Glacion</title>
<!-- NORMALIZE -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css">
<!-- MAIN STYLE -->
<link rel="stylesheet" href="styles/main.css">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Maven+Pro" rel="stylesheet">
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/manifest.json">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<link href="pace/theme-bar.css" rel="stylesheet"/>
<script src="pace/pace.js"></script>
</head>
<body>
<!-- GRANIM CANVAS -->
<canvas id="granim-canvas"></canvas>
<!-- CONTAINER FOR PAGE ITEMS -->
<div class="body-container">
<!-- GLACION LOGO -->
<img class="logo" src="images/glacion-logo-red-white.svg" alt="Glacion Logo">
<!-- SEARCH BOXES -->
<form class="searchbox" action="">
<!-- LOCATION SEARCH BOX -->
<div class="location-searchbox">
<input class="search-location" type="text" placeholder="Location..">
</div>
<!-- JOB TITLE AND DATE CONTAINER -->
<div class="job-date-container">
<!-- JOB TITLE SEARCH BOX -->
<div class="job-title-searchbox">
<input class="search-job-title" type="text" placeholder="Job Title..">
</div>
<!-- DATE MENU -->
<div class="date-container">
<select class="date-select">
<option value="" disabled selected>Days</option>
<option value="15">15 Days</option>
<option value="30">30 Days</option>
<option value="60">60 Days</option>
<option value="90">90 Days</option>
</select>
</div>
</div>
<!-- BUTTON -->
<button type="submit" class="search-button">Search</button>
</form>
</div>
<!-- GRANIM LIBRARY SCRIPT -->
<script src="scripts/granim.min.js"></script>
<!-- MY GRANIM SCRIPT -->
<script src="scripts/granim.js"></script>
<!-- jQuery SCRIPT -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!--adding test.html Scripts-->
<script type='text/javascript' src='scripts/config.js'></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDyP-CDcYsQMrECY9Nh_EyqNHTiPoCXxKw&libraries=places"></script>
<script src="scripts/main.js" charset="utf-8"></script>
</body>
</html>