-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (52 loc) · 1.65 KB
/
index.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
<!DOCTYPE html>
<!-- Project site index page for IntlPop.
Written by Cliff Shaffer, 2013
This is what you see when you go to http://geosim.cs.vt.edu/IntlPop
-->
<html>
<head>
<meta charset="utf-8">
<title>Intlpop Project Homepage</title>
<link rel="stylesheet" href="GeoSim.css" type="text/css" />
</head>
<body>
<h1>IntlPop 3 Project Homepage</h1>
<p>
Welcome to the IntlPop 3 project homepage!
This version of IntlPop is written in HTML5/JavaScript.
</p>
<p>
IntlPop is a simple population simulation, suitable for use in
introductory geography courses.
IntlPop was originally created in the early 1990's as part of the
GeoSim project, written as a C application for the PC.
The second version was written in 1999 as a Java applet.
It is currently available
<a href="http://geosim.cs.vt.edu/Java/IntlPop/IntlPop.html">here</a>.
</p>
<p>
IntlPop 3 is distributed under the
<a href="MIT-license.txt">MIT open source license</a>,
and is free to use.
A copy of the sourcecode for Intlpop 3 is available through GitHub
<a href="https://github.com/cashaffer/IntlPop">here</a>.
</p>
<center>
<iframe id="IntlPop_iframe"
src="IntlPop.html" type="text/javascript"
width="906" height="535"
frameborder="1" marginwidth="0" marginheight="0" scrolling="no">
</iframe>
</center>
<p>
If you have further questions, feel free to contact us at
<tt><script type="text/javascript" language="JavaScript">
// Make it just a little harder for spammers to pick up the email address
var name = "geosim";
var place = "cs.vt.edu";
var theAddress = name + "@" + place;
document.write (theAddress.link ("mailto:" + theAddress))
</script></tt>.
</p>
</body>
</html>