-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (30 loc) · 906 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<!-- Title of Tab -->
<title> Chris' CV </title>
<!-- Meta Data -->
<meta name="author" description="Chris Brophy">
<meta name="CV" description="Interactive CV">
<!-- CSS Link -->
<link href="style.css" rel="stylesheet" type="text/css">
<!-- Favicon -->
<link href="imgs/favicon.png" rel="icon" type="image/gif" sizes="16x16">
</head>
<body>
<h1> Welcome to my Nerdy CV Experience! </h1>
<!-- Canvases for Game and CV -->
<div id="canvas-container">
<canvas id="game-window" border=1></canvas>
<canvas id="cv-window" border=1></canvas>
</div>
<!-- Scripts -->
<script type = "text/javascript">
var completed = 0;
</script>
<!-- Game Script -->
<script src="js/platformer.js" type="text/javascript"></script>
<!-- CV Update Script -->
<script src="js/cv.js" type="text/javascript"></script>
</body>
</html>