-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeuxjoueurs.html
42 lines (36 loc) · 1.98 KB
/
deuxjoueurs.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="morpion_game.jpg">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<script src="script/jquery.js"></script>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<title>Morpion</title>
</head>
<body>
<h1>Morpion</h1>
<h2 id="resultat"><br/></h2>
<!--
<div id="imagesuser">
<a href="javascript:chifoumideuxjoueurs('pierre',0);"><img src="img/pierre.jpg" alt="pierre" id="pierre"></a>
<a href="javascript:chifoumideuxjoueurs('feuille',0);"><img src="img/feuille2.jpg" alt="feuille" id="feuille"></a>
<a href="javascript:chifoumideuxjoueurs('ciseaux',0);"><img src="img/ciseaux2.jpg" alt="ciseaux" id="ciseaux"></a>
<a href="javascript:chifoumideuxjoueurs('puits',0);"><img src="img/puits2.jpg" alt="puits" id="puits"></a>
</div>
<div class="score">
<h2 id="scoreusertitre">Joueur 1 : <span id="scoreuser">0</span></h2><h2 id="scorejoueur2titre"> - <span id="scorejoueur2">0</span> : Joueur 2</h2>
</div>
<div id="imagesjoueur2">
<a href="javascript:chifoumideuxjoueurs(0,'pierre');"><img src="img/pierre.jpg" alt="pierre" id="pierrejoueur2"></a>
<a href="javascript:chifoumideuxjoueurs(0,'feuille');"><img src="img/feuille2.jpg" alt="feuille" id="feuillejoueur2"></a>
<a href="javascript:chifoumideuxjoueurs(0,'ciseaux');"><img src="img/ciseaux2.jpg" alt="ciseaux" id="ciseauxjoueur2"></a>
<a href="javascript:chifoumideuxjoueurs(0,'puits');"><img src="img/puits2.jpg" alt="puits" id="puitsjoueur2"></a>
</div> -->
<script src="script/script.js"></script>
</body>
</html>