forked from milanifard/BrainWar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 894 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
<!DOCTYPE html>
<link rel="stylesheet" href="src/index.css" >
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body class="game">
<div class="align-center">
<meta charset="UTF-8">
<h1 class="heading">TapTheColor</h1>
<img class="heading_img" alt="Tap The Color Logo" src="img/tapthecolor.png"/>
<button class="btn" id="btn-start" onClick="startFunc()">
Start
</button >
<button class="btn" id="btn-guide" onClick="guideFunc()">
How To Play
</button>
<button class="btn" id="btn-credit" onClick="creditFunc()">
Credit
</button>
<h1 class="heading" id="credit">Credit By: Mohammad Shirshekar</h1>
<img style="display:none;margin: auto;" id="guidepic" src="img/guide.jpeg" />
<button class="btn" id="closeButton" onClick="closeFunc()">I Found</button>
</div>
</body>
</html>
<script src="src/index.js"></script>