-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (28 loc) · 990 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
<!DOCTYPE html>
<head>
<title>Tweety Bird</title>
<link rel="stylesheet" href="./styles.css">
<link href="https://fonts.googleapis.com/css?family=Electrolize&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bungee+Shade&display=swap" rel="stylesheet">
<script type="text/javascript" src="dist/main.js" charset="utf-8" defer></script>
<link rel="shortcut icon" type="images/x-icon" href="images/fav-bird.ico">
</head>
<body>
<h1 class="title">Tweety Bird</h1>
<div class="canvas-container">
<canvas id="bird-game" height="640" width="480"></canvas>
</div>
<div class="personal-div">
<a href="https://www.linkedin.com/in/ebaek5/">
<img src="images/linkedin.png">
</a>
<a href="http://www.estherbaek.com/">
<img src="images/personalsite.png">
</a>
<a href="https://github.com/ebaek">
<img src="images/github.svg">
</a>
</div>
<h4 class="estherbaek">Esther Baek</h4>
</body>
</html>