-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.html
81 lines (69 loc) · 1.89 KB
/
contact.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
74
75
76
77
78
79
80
81
<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>Contact</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Zilla+Slab" rel="stylesheet">
<!-- CSS Libs -->
<link rel="stylesheet" href="./lib/css/bootstrap.min.css">
<!-- JS Libs -->
<script src="./lib/js/jquery.min.js"></script>
<script src="./lib/js/bootstrap.min.js"></script>
<!-- CSS Src -->
<!-- less.js to parse stylesheet/less -->
<script src="./lib/js/less.min.js"></script>
<style>
@import url(https://fonts.googleapis.com/css?family=Zilla+Slab);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
background-color: #E5ECEA;
}
img {
padding-top: 15px;
}
h3 {
font-family: 'Zilla Slab', sans-serif;
font-size: 250%;
}
p {
font-family: 'Open Sans', sans-serif;
}
hr {
border-top: 1px solid gray;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 col-xs-6"><br>
<button type="button" class="btn btn-default" id="back-button">
<a href="./index.html" id="back-link"><span class="glyphicon glyphicon-arrow-left"></span> Back</a>
</button>
</div>
<div class="col-md-6">
<img src="data/logo.jpg" class="img-responsive pull-right" id="image">
</div>
</div><br><br>
<div class="row" id="test">
<div class="col-md-12">
<h3>Contact</h3>
<hr>
<address>
<b>Englewood Data Hub</b><br>[email protected]
</address>
</div>
</div>
</div>
<script>
$(document).ready(()=> {
if(location.search.indexOf("type=analytics") > -1){
$("#back-link").attr("href","./analytics.html");
}
$("#back-button").on("click", () => {
location.href = $("#back-button a").attr("href");
});
})
</script>
</body>