-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.56 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.56 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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>love</title>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" type="image/x-icon" href="./assets/images/favicon.ico">
</head>
<body>
<div id="main">
<div id="side">
<img id="logo" src="./assets/images/love.png" alt="love logo">
<p>
<span id="boy">BOY</span> and <span id="girl">GIRL</span><br>
fell in love<br>a long time ago.
</p>
<p>
But <span id="evil">Evil Routine</span><br> took them apart.
</p>
<p>
Can you reunite them?
</p>
<button id="play">PLAY</button>
</div>
<canvas width="910" height="600">
</canvas>
<button id="reload"><img id ="rel" src="./assets/images/reload.png" alt="fullscreen"></button>
<button id="fullscreen"><img id ="full" src="./assets/images/full.png" alt="fullscreen"></button>
</div>
<footer>
<p>A cooperative puzzle game about love ♥</p>
<p>Created by Víctor Peña Romero at Ironhack</p>
<a href="https://github.com/evilvic/love" target="_blank">
<img id="github" src="./assets/images/github.png" alt="github">
</a>
</footer>
<audio src="./assets/sounds/arpument.mp3"></audio>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>