-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlab02.html
66 lines (52 loc) · 1.57 KB
/
lab02.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>
<title>Dave's Lab 02 webpage!</title>
</head>
<body>
<h1>This is my second webpage!</h1>
<h2>About me</h2>
<p>
I'm an instructor of GIS at
<a href="http://www.msudenver.edu">
Metropolitan State University of Denver</a>. I love my job!
</p>
<h3>Classes I'm teaching</h3>
<ul>
<li>Intro to Geospatial Science</li>
<li>GIS</li>
<li>Web Mapping</li>
<li>Cartography</li>
<li>GIS Applications</li>
</ul>
<h3>Classes I'm not teaching in order of not teaching them</h3>
<ol>
<li>Spatial Modeling in Raster</li>
<li>Spatial Databases</li>
<li>GIS Programming</li>
</ol>
<h3>Schedule of Classes Coming Up</h3>
<table border=1>
<tr><th>Class</th>
<th>Fall Semester</th>
<th>Spring Semester</th>
</tr>
<tr><td>Intro to Geospatial Sciences</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr><td>GIS</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr><td>Web Mapping</td>
<td colspan=2>Every 3rd semester</td>
</tr>
</table>
<p>That's me. WHat about you?<p>
<p>You can email me at <a href="mailto:[email protected]">here</a>.</p>
<img width=100 height=120 src="http://www.daveparr.com/blog/wp-content/uploads/2019/06/daveparr-1.jpg">
<p>My GitHub repository is at <a href="https://github.com/dparr1?tab=repositories">here.</a></p>
<p>Here's a map of my neighborhood: <img width=250 height=330 src="map.jpg"></p>
</body>
</html>