-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (23 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dream Job</title>
<meta name="description" content="Dream Job is job search engine that allows you to research companies, save your favourite jobs and add notes to your favourite jobs all in one platform.">
<meta name="author" content="Amy Wah">
<link rel="icon" type="image/png" href="./dreamJob.png" />
<link rel="stylesheet" href="/public/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,800" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.5/bluebird.min.js"></script>
<script type="text/javascript" src="https://gdc.indeed.com/ads/apiresults.js"></script>
</head>
<body>
<div id="app"></div>
<script src="https://www.gstatic.com/firebasejs/3.7.2/firebase.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<!-- the / tells it to start from root directory -->
<script src="/public/app.js"></script>
</body>
</html>