-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.1 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cider Tasting</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,600" rel="stylesheet" type="text/css">
<link href="css/cider.css" rel='stylesheet' type='text/css'>
</head>
<body>
<div class="fluid-ratio-resize"></div>
<div class="header"></div>
<div class="content" id="listjs">
<h1>Cider Tasting</h1>
<div class="sort-input">
<input class="search" placeholder="Search" />
</div>
<table class="cidertable" id="cider-table">
<thead>
<tr>
<th>Brand</th>
<th>Cider</th>
<th>Rating</th>
<th>Notes</th>
</tr>
</thead>
<tbody class="list" id="cider-table-body">
</tbody>
</table>
<p>Last Updated: July 17, 2025</p>
</div>
<footer>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/list.min.js"></script>
<script src="js/generateTable.js"></script>
</body>
</html>