-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>GIPHY PARTY</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<main>
<div class="container" id="container">
<header>
<h1>GIPHY PARTY</h1>
<img src="./img/PoweredBy_200_Horizontal_Light-Backgrounds_With_Logo.gif">
</header>
<form id="form" data-cy="form">
<input type="text" name="search-term" class="search-input" id="search-input" data-cy="search-input" required>
<button class="btn btn-green" id="search-btn" data-cy="search-btn">Search!</button>
<button class="btn btn-purple" id="remove-all-btn" data-cy="remove-all-btn">Remove All</button>
</form>
<div class="helper" id="helper" data-cy="helper">
<p>Please enter a search term.</p>
</div>
<div class="gifs-container" id="gifs-container" data-cy="gifs-container"></div>
</div>
</main>
<script src="./js/index.js"></script>
</body>
</html>