-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalMadison.html
79 lines (55 loc) · 2.4 KB
/
globalMadison.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Caroline Rose | Bathymetric Book</title>
<!--Link to CSS style sheet-->
<link href="styles/screen.css" rel="stylesheet" type="text/css" />
<!-- load jQuery -->
<script src="js/jquery/jquery-1.9.0.min.js"></script>
<!-- load Galleria -->
<script src="js/galleria-1.2.9.min.js"></script>
</head>
<!--VISIBILE WEBSITE CONTENT-->
<body>
<div id="wrapper">
<header><!--Banner at top of page-->
<h1><a href="index.html">Caroline Rose</a></h1>
<!--Navigation menu-->
<nav>
<ul>
<!--<li><a href="index.html">home</a> | </li>-->
<li><a href="index.html">portfolio</a> | </li>
<li><a href="about.html">about</a> | </li>
<li><a href="resume.html">rèsumè</a></li>
<!--<li><a href="contact.html">contact</a></li>-->
</ul>
</nav>
</header>
<div id="content"><!--content between header and footer-->
<table>
<tr>
<td class="width40"><a href="sandy.html"><p>prev</p></a></td>
<td class="width820"><h2 class="center_me">Global Madison</h2></td>
<td class="width40"><a href="mendota.html"><p>next</p></a></td>
</tr>
</table>
<p class="description">Global Madison is an interactive map designed for use by International Studies 101 students at UW-Madison. This was a collaborative project, built by students in a graduate-level mobile mapping seminar. The website design is responsive, adapting to the width of the browser or device, to facilitate both mobile and desktop viewing. <br/><span class="underline_me"><a href="http://geography.wisc.edu/globalmadison/" target="_blank">The interactive application can be found at this link.</a></span></p>
<div id="galleria">
<img src="images/globalMadison1.JPG" alt="globalMadison1" />
<img src="images/globalMadison2.JPG" alt="globalMadison2" />
<img src="images/globalMadison3.JPG" width="430" alt="globalMadison3" />
<img src="images/globalMadison4.JPG" width="430" alt="globalMadison4" />
</div>
<!--Slideshow javascript links-->
<script>
Galleria.loadTheme('js/galleriathemes/classic/galleria.classic.min.js');
Galleria.run('#galleria', {maxScaleRatio: 1, showInfo: false});
</script>
</div><!--Closes content div-->
<footer>
© Caroline Rose 2015
</footer>
</div><!--Closes wrapper div-->
</body>
</html>