forked from Resilient-Labs/morning-challenge-tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.19 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css\main.css">
<title>Tic-Tac_Toe</title>
</head>
<body>
<main id="gameContainer">
<h1> Rugrats Tic-Tac-Toe</h1>
<h2>player 1: <img src="https://www.emotiyou.com/galerie/tv/dessins-animes/razmoket/201105151622DFV.gif" alt="">
player 2:<img src="https://www.emotiyou.com/galerie/tv/dessins-animes/razmoket/201105151627NOE.gif"></h2>
<section id="grid-item">
<div class="cell-item" id="0"></div>
<div class="cell-item" id="1"></div>
<div class="cell-item" id="2"></div>
<div class="cell-item" id="3"></div>
<div class="cell-item" id="4"></div>
<div class="cell-item" id="5"></div>
<div class="cell-item" id="6"></div>
<div class="cell-item" id="7"></div>
<div class="cell-item" id="8"></div>
</section>
<section >
<h3 id="player-text"></h3>
<div id="visual-taunt">
</div>
</section>
<button id="play-game">Play Game</button>
</main>
<script src="js/main.js"></script>
</body>
</html>