-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
51 lines (49 loc) · 1.68 KB
/
team.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OW2 Team Builder</title>
<link rel="stylesheet" href="teamstyles.css">
</head>
<body>
<header>
<img src="images/barlogo.png" alt="Overwatch Logo" class="header-image">
<div class="nav-links">
<a href="index.html">Hero</a> |
<a href="team.html">Team</a>
</div>
</header>
<main>
<section id="enemy-team">
<h2>Enemy Team Composition</h2>
<div class="hero-select">
<select id="enemy1">
<option value="">Select Tank</option>
</select>
<select id="enemy2">
<option value="">Select DPS</option>
</select>
<select id="enemy3">
<option value="">Select DPS</option>
</select>
<select id="enemy4">
<option value="">Select Support</option>
</select>
<select id="enemy5">
<option value="">Select Support</option>
</select>
</div>
<button id="submit-button">Suggest Team</button>
</section>
<section id="suggested-team">
<h2>Suggested Team Composition</h2>
<div id="suggested-team-heroes"></div>
</section>
</main>
<footer>
<p>Overwatch 2 Counterpick Tool - Rishab Jadhav - <a href="https://github.com/rishabjadhav" target="_blank">GitHub</a></p>
</footer>
<script src="teamscript.js"></script>
</body>
</html>