-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (66 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Adv. GIS: Session 2</title>
<meta name="description" content="Adv. GIS, simple webpage">
<meta name="author" content="ThomasHe89">
<link rel="stylesheet" href="css/style.css">
<!--
get rid of this since we don't have a stylesheet.
<link rel="stylesheet" href="css/styles.css?v=1.0">
-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id='myFirstDiv'>
Hello, World!
<h1>
Second Class for Web Development
</h1>
<h3 class='notTestClass'>
This is the subtitle
</h3>
<div class='hasBackgroundImage'></div>
<div class='testClass'>Test</div>
<div class='testClass'>Test</div>
<div class='notTestClass'>Not</div>
<p>
This is a paragraph
</p>
<div>
<ul>
<li><img src='https://pbs.twimg.com/profile_images/3057855429/49cff02ea1ea88993d7edadd8b027982_400x400.jpeg'><a href='http://www.chriswhong.com'> Chris Whong</a> - Instructor</li>
<li>Karina - Student</li>
<li>Sarah - Student</li>
<li>Joe - Student</li>
</ul>
</div>
<p>
This is also a paragraph
</p>
<button id='alert'>
Show an Alert
</button>
<br/>
<button id="makeGreen">
Make Green
</button>
<button id="makeBlue">
Make Blue
</button>
<button id="makeRed">
Make Red
</button>
<h4>My Number is <span id='myNumber'>1</span></h4>
<button id="addOne">Add 1</button>
<button id= "subtractOne">Subtract 1</button>
</div>
<!-- source jquery library -->
<script src="js/jquery.js"></script>
<!-- start jquery part -->
<script src="js/script.js"></script>
</body>
</html>