-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Giani's Codes</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1 id="title">Giani's Codes</h1>
<h3 id="header-codes"><a href="./pages/codes.html">Codes</a></h3>
</header>
<main>
<img id="result-icon" src="" alt="" width="150px" height="150px">
<div id="redeem-container">
<input id="redeem-input" type="text" placeholder="ENTER YOUR CODE">
<button id="redeem-button">REDEEM</button>
</div>
<h2 id="result-message"></h2>
</main>
<footer>
<h5 id="copyright-text"></h5>
</footer>
<script src="./codes.js" type="module"></script>
<script src="./script.js" type="module"></script>
</body>
</html>