-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (48 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<script src="jquery-1.12.4.min.js"></script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
<title>Zhaeong</title>
</head>
<body>
<div id="header"></div>
<div id="content-wrapper">
<div class="inner clearfix">
<div>
<a href="./Resume.html">
<div style=" float: left; margin-right:3px"> <img src="images/PaperIcon.png" alt="Paper"> </div>
<div><h3> Resume </h3> </div>
</a>
</div>
<div>
<a href="./Games/gameIndex.html">
<div style=" float: left; margin-right:3px"> <img src="images/VideoGameController.png" alt="Paper"> </div>
<div><h3> Games </h3> </div>
</a>
</div>
<div>
<a href="https://github.com/Zhaeong">
<div style=" float: left; margin-right:3px"> <img src="images/GithubIcon.png" alt="Paper"> </div>
<div><h3> GitHub </h3> </div>
</a>
</div>
<div>
<a href="./Misc/Miscindex.html">
<div style=" float: left; margin-right:3px"> <img src="images/manicon.png" alt="Paper"> </div>
<div><h3> Misc </h3> </div>
</a>
</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>