-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 874 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Twitchey</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="search">
<input id="search-input" placeholder="Search query..." type="text">
<button id="search-button">Search</button>
</div>
<div style="margin-left: 5px;">
Results: <span id="results-count">0</span>
</div>
<div id="results" class="results"></div>
<button id="load-more-button" class="hidden">Load More</button>
<div id="loading-overlay" class="loading-overlay hidden">Loading...</div>
</div>
<script src="script.js"></script>
</body>
</html>