-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheroPick.html
53 lines (47 loc) · 2.05 KB
/
heroPick.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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Hero Fight</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap" rel="stylesheet">
<link href="./main.css" rel="stylesheet" type="text/css" />
</head>
<body id="body">
<div class="pickContainer" id="wrapper">
<div class="titleWrapper">
<h1>Hero Fighting Game</h1>
<div class="playersWrapper">
<div class="player1Wrapper">
<h2 class="pickTitle">Player 1 pick a Hero:</h2>
<div class="innerContainer">
<input type="text" id="searchInput" placeholder="Type hero name here">
<button id="searchButton" type="submit">Search</button>
</div>
<button id="newHeroButton">Get Random Hero</button>
<div id="heroImage"><img src="" alt=""></div>
</div>
<div class="vs">VS</div>
<div class="player2Wrapper">
<h2 class="pickTitle">Player 2 pick a Hero:</h2>
<div class="innerContainer">
<input type="text" id="searchInput2" placeholder="Type hero name here">
<button id="searchButton2" type="submit">Search</button>
</div>
<button id="newHeroButton2">Get Random Hero</button>
<div id="heroImage2"><img src="" alt=""></div>
</div>
</div>
</div>
<div class="nextButtons" id="fightButton">
<a>FIGHT</a>
<!-- <a href="./game.html">FIGHT</a> -->
<a href="./index.html">Back to Menu</a>
<a href="https://github.com/Zasada94">Back to Github</a>
</div>
</div>
<script src="heroPick.js"></script>
</body>
</html>