-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.26 KB
/
Copy pathindex.html
File metadata and controls
34 lines (34 loc) · 1.26 KB
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
<!DOCTYPE HTML>
<head>
<meta charset="UTF-8" class="no-js">
<title>Katherine Kim @ IIT</title>
<link rel="stylesheet" type="text/css" href="https://kkim57.github.io/Project3/css/style.css">
</head>
<header>Main</header>
<nav>
<a href="index">Main</a> ❄
<a href="about">About Me</a> ❄
<a href="resume">Resume</a>
</nav>
This is a page about Katherine Kim, an Information and Technology Management Undergraduate at Illinois Insititute of Technology. This page was created as a project for the ITM 361 Fundamentals of Web Development class and contains both a little bit of information about myself and my resume.
<div id="map"></div>
<script>
function initMap() {
var iit = {lat: 41.834692, lng: -87.626915};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 15,
center: iit
});
var marker = new google.maps.Marker({
position: iit,
map: map
});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCVJ1xDAuUocm7fDQuGVAyQIz41vOjUKzw&callback=initMap">
</script>
<footer>
<p>Katherine Kim ❄
<a href="kkim57@hawk.iit.edu">kkim57@hawk.iit.edu</a></p>
</footer>