-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 997 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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GATOTKACA</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://bootswatch.com/5/lumen/bootstrap.css">
</head>
<body>
<div class="container-fluid">
<div class="col-md-4 mt-3">
<h2 class="text-primary">GATOTKACA</h2>
<form id="search" action="javascript:void(0)" novalidate>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Kata kunci" id="query">
<button class="btn btn-primary" type="submit" id="cari">Search</button>
</div>
</form>
</div>
<div class="col-md-12 mt-4">
<div id="sresult">
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script
src="search.js""></script>
</body>
</html>