-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhasil_pencarian.html
70 lines (64 loc) · 1.65 KB
/
hasil_pencarian.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<?php include('nav.html');?>
<div data-role="page" class="ui-body ui-body-a ui-corner-all">
<div class="container" data-role="main" class="ui-content">
<h1 style="text-align: center;">Hasil Pencarian</h1>
<br/>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th class="info">No</th>
<th class="info">Nama Masakan</th>
<th class="info">Deskripsi</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
<tr>
<td>2</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
<tr>
<td>3</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
<tr>
<td>4</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
<tr>
<td>5</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- jQuery library -->
<script src="js/jquery-3.1.1.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Include the jQuery Mobile library -->
<script src="js/jquery.mobile-1.4.5.min.js"></script>
</body>
</html>