-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
66 lines (64 loc) · 2.04 KB
/
list.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>
<head>
<link rel="shortcut icon" href="logo.png"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main-style.css"/>
<link rel="stylesheet" type="text/css" href="css/list-style.css"/>
<title>Uproot</title>
</head>
<!-- Navigation Bar -->
<body onload="displayList()">
<div class="navbar">
<div class="container">
<a class="logo" href="index.html"><img src="images/logo.PNG" alt="Logo"></a>
<nav>
<ul class="nav-list">
<li class="nav-education"><a href="html/education-page.html">Education</a></li>
<li class="nav-job"><a href="filter.html">Find a Job</a></li>
<li><a href="list.html">My List</a></li>
<li>
<div id="google_translate_element"></div>
<script>
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
</li>
</ul>
</nav>
</div>
</div>
<div class="primary-title">
<h1>Your List</h1>
</div>
<script src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<!-- Printer Button -->
<button onclick="print()" id="print_button"><span class="material-icons">print</span></button>
<div id="results"></div>
<!-- Google Map -->
<div id="map"></div>
<!-- Footer -->
<footer>
<div class="contact-us">
<h2>Contact us!</h2>
</div>
<div class="vertical-line"></div>
<ul>
<img src="/images/Gmail_icon_(2020).svg" alt="Gmail icon">
<li><a href="">Email</a></li>
<img src="/images/GitHub-Mark-Light-120px-plus.png" alt="GitHub Icon">
<li><a href="https://github.com/RickleAndMortimer/RickleAndMortimer.github.io">Git-Hub</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="config.js"></script>
<script src="js/script.js"></script>
<script src="js/list.js"></script>
</script>
</body>
</html>