-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomp.html
45 lines (38 loc) · 1.09 KB
/
comp.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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Deceit Comparaisons</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>
<img
src="https://cdn.discordapp.com/attachments/1034164298177581166/1096542294754209792/header_deceitcomp.jpg"
alt=""
/>
</h1>
<button class="navB">
<a href="./index.html">
Voir 1 profil
</a>
</button>
<div>
<label for="playerId1">ID de Joueur 1 :</label>
<input type="text" id="playerId1" name="playerId1" />
<button id="submitBtn1">Afficher</button>
</div>
<div>
<label for="playerId2">ID de Joueur 2 :</label>
<input type="text" id="playerId2" name="playerId2" />
<button id="submitBtn2">Afficher</button>
</div>
<div class="statsDiv">
<ul id="stats1"></ul>
<ul id="stats2"></ul>
</div>
<script src="./jscomp.js"></script>
</body>
</html>