-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgame.html
More file actions
63 lines (59 loc) · 2.17 KB
/
game.html
File metadata and controls
63 lines (59 loc) · 2.17 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/reset.css" type="text/css" rel="stylesheet"/>
<link href="css/game.css" type="text/css" rel="stylesheet"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap" rel="stylesheet">
<!-- <link href="css/styles.css" type="text/css" rel="stylesheet"/> -->
<title>Majic-Cards-Game</title>
</head>
<body>
<header>
<h1><span>Majic The Gathering</span></h1>
<nav>
<ul>
<li id="nav-bar">
<a id="nav-color" href="index.html">HOME</a>
</li>
<li id="nav-bar">
<a id="nav-color" href="aboutus.html">ABOUT</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="sectionHoldingGame" >
<img id="gameOver" />
<audio id="looserAudio" autoplay ></audio>
<h4 id="scoreText"></h4>
<section id="gameState">
<article>
<img id="aiHandCardOne" width="100px" height="150px" />
<img id="aiHandCardTwo" width="100px" height="150px"/>
<p id="aiName"><h5 id="aiHealth"></h5></p>
</article>
<section id="boardState">
<article>
<img id="aiPickedCard" width="150px" height="200px"/>
</article>
<article>
<img id="playerPickedCard" width="150px" height="200px"/>
</article>
</section>
<article id="playerHand">
<img id="playerHandCardOne" width="100px" height="150px"/>
<img id="playerHandCardTwo" width="100px" height="150px"/>
<p id="playerName"><h5 id="playerHealth"></h5></p>
</article>
</section>
</section>
</main>
<footer>
</footer>
<script src="js/app.js"></script>
<script src="js/boardgame.js"></script>
</body>
</html>