-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.html
27 lines (27 loc) · 1007 Bytes
/
Project.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- add web page title -->
<title>Neemann Web GIS Project</title>
<!-- link stylsheets and scripts: my CSS, ESRI CSS, my JS -->
<link rel="stylesheet" type="text/css" href="../GEOG6165/style_Project.css">
<link rel="stylesheet" href="https://js.arcgis.com/4.3/esri/css/main.css">
<script src="https://js.arcgis.com/4.6/"></script>
<script src="../GEOG6165/script_Project.js"></script>
</head>
<body>
<!-- add header banner with title -->
<div id="header">
<h1>Montana Surface Water Usage</h1>
</div>
<!-- add container for map view -->
<div class="container">
<div id="viewDiv"></div>
</div>
<!-- add footer with name, copyright and UofU Geog link -->
<div id="footer">
<p>This page is maintained by Erik Neemann © 2018, <a href="http://www.geog.utah.edu/">Department of Geography, University of Utah</p>
</div>
</body>