-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search for League of Legends Stats</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>League of Legends Player Statistics Tracker</h1>
<p>Enter your LoL account name to see statistics.</p>
</header>
<main>
<form id="searchForm">
<input type="text" id="searchInput" placeholder="Enter your LoL account name..." required>
<button type="submit">Search</button>
<!-- Region selection button -->
<label for="regionSelect">Choose your region:</label>
<select id="regionSelect" required>
<option value="NA">North America</option>
<option value="EUW">Europe West</option>
<option value="EUNE">Europe Nordic & East</option>
<option value="KR">Korea</option>
<option value="BR">Brazil</option>
<!-- Add other regions as needed -->
</select>
</form>
</main>
<footer>
<p>League of Legends Statistics Tracker © 2024</p>
</footer>
<script src="app.js"></script>
</body>
</html>