-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathind.html
32 lines (32 loc) · 979 Bytes
/
ind.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Game percobaan</title>
<link
rel="icon"
type="image/png"
href="./logo.jpg"
sizes="16x16"
/>
<link rel="stylesheet" href="./style1.css" />
</head>
<body>
<div class="center">
<h1 class="title-red" id="title-player">Pilihan pemain :</h1>
<img id="image-player" src="./bola.png" alt="bola" height="48" />
<div>
<button onclick="handleClick('harry')">harry</button>
<button onclick="handleClick('hermione')">hermione</button>
<button onclick="handleClick('ron')">ron</button>
</div>
</div>
<div class="center">
<h1 class="title-blue" id="title-enemy">Pilihan lawan :</h1>
<img id="image-enemy" src="./bola.png" alt="bola" height="48" />
</div>
<div>
<h1 id="result" style="text-align: center"></h1>
</div>
<script src="./js/main.js"></script>
</body>
</html>