-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 828 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 828 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="res/kebab.png">
<title>The Kebab Game</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A game where you play as a Kebab which has to get the most money as fast as possible">
<meta name="google-site-verification" content="r76r0Pg1v-9FCeZo-23QCY87mCESjS6dRVzfNw8OttA" />
<link rel="stylesheet" href="start.css" />
</head>
<body>
<img id="kebap" src="res/kebab.png" width="200px" height="135px"/>
<div>
<h1 id="title">The Kebab Game</h1>
<h1 id="credits">made by Dennis2008</h1>
</div>
<div id="playButton">
<a href="./game">
<img src="res/playButton.png">
<p id="play">Play</p>
</a>
</div>
<script src="start.js"></script>
</body>
</html>