-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.92 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Roboto+Condensed:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎮</text></svg>">
<!-- credit: https://css-tricks.com/emoji-as-a-favicon/ -->
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="./style/style.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js' integrity='sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==' crossorigin='anonymous' referrerpolicy='no-referrer' defer></script>
<script src="./script.js" defer></script>
<title>Free Games RIGHT NOW</title>
</head>
<body>
<main>
<h1>Currently FREE games on popular platforms!</h1>
<form action="">
<label for="platform">Choose your platform:</label>
<select name="platform" id="platform">
<option value="default">Choose your platform</option>
<option value="all">All Available</option>
<option value="epic">Epic Games Store</option>
<option value="steam">Steam</option>
<option value="xbox">Xbox</option>
<option value="gog">GOG (Good Old Games)</option>
</select>
<div id="mainContent"></div>
</form>
</main>
<footer>
<p>Powered by <a href="https://www.gamerpower.com/api-read">GamerPower.com</a></p>
</footer>
</body>
</html>