-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
75 lines (61 loc) · 1.87 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
<!-- ********************************************************
Contact page for Interactive Map of California Counties
Last updated: 3/11/2017
Henry Whipps and Tyler Young
********************************************************* -->
<!DOCTYPE html>
<html>
<head>
<title>CA County Map</title>
<link rel="stylesheet" href="w3.css"> <!-- W3Schools stylesheet (for NavBar) -->
<style>
h4 {
font-family: "Tahoma", Geneva, sans-serif;
}
h3 {
font-family: "Tahoma", Geneva, sans-serif;
}
h2 {
font-family: "Tahoma", Geneva, sans-serif;
}
h1 {
font-family: "Tahoma", Geneva, sans-serif;
font-weight: normal;
}
p {
font-family: "Tahoma", Geneva, sans-serif;
margin: 0px 5px 9px 3px;
font-size: 14px;
}
a {
font-family: "Tahoma", Geneva, sans-serif;
}
</style>
</head>
<!-- !PAGE CONTENT! -->
<div class="w3-content" style="max-width:1500px" align="center">
<!-- Header -->
<header>
<h1 style="margin-bottom:0px;">Interactive Map of California Counties</h1>
<!-- Nav-bar from w3-schools -->
<div class="w3-padding-16">
<div class="w3-btn-bar w3-border w3-show-inline-block">
<a href="index.html" class="w3-btn">Map</a>
<a href="datasource.html" class="w3-btn">Data Sources</a>
<a href="contact.html" class="w3-btn w3-light-grey">Contact</a>
</div>
</div>
</header>
</div>
<h3 align="center" style="margin-bottom:25px;"> Contact Information </h3>
<div style="width:280px; margin:0 auto; background-color:#F1F1F1; padding: 10px 10px 5px 15px;">
<h4 style="margin-bottom:5px; margin-top:0px;">Henry Whipps</h4>
<p>[email protected]<br>
Geography major, Geospatial emphasis
</p>
<hr style="margin-top:20px; width:70%;">
<h4 style="margin-bottom:5px; margin-top:18px;">Tyler Young</h4>
<p>[email protected]<br>
Geography major, Geospatial emphasis
</p>
</div>