-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (28 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Gifinater</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<div class="container-fluid">
<h1>Gifinater</h1>
<div class="input-group">
<input type="text" class="form-control" placeholder="Search for..." id="search-box" onkeypress="updateSearchKeyCheck(event)">
<span class="input-group-btn">
<button onclick="updateSearch()" onkeypress="updateSearch()" class="btn btn-primary" type="button" id="search-button">Go!</button>
<button onclick="randomize()" class="btn btn-default" type="button" id="random-button">Random Kitten</button>
</span>
</div>
<br />
<div class="row" id="result-area"></div>
</div>
</body>
<script>
// You can also require other files to run in this process
require('./templates.js')
require('./renderer.js')
</script>
</html>