pager/index.html

32 lines
869 B
HTML
Raw Normal View History

2021-06-21 18:14:57 +00:00
<!DOCTYPE html>
<html>
<head>
2021-06-22 21:59:12 +00:00
<title>Coke Bottle Glasses</title>
2021-06-21 18:14:57 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2023-04-27 05:57:59 +00:00
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
2023-04-27 06:33:38 +00:00
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/base.js"></script>
<script src="js/nouns.js"></script>
2021-06-21 18:14:57 +00:00
<script>
2023-04-27 05:57:59 +00:00
window.onload = () => {
App.init()
2021-06-21 18:14:57 +00:00
}
</script>
</head>
<body>
2023-04-27 05:57:59 +00:00
<div id="inputs">
<input type="number" max="9999" min="0" id="numb" value="89" title="Page">
<input type="text" id="filter" placeholder="Filter">
<div class="flex_row_center">
2021-06-21 18:14:57 +00:00
<div>Exact:</div>
2023-04-27 05:57:59 +00:00
<input id="exact_filter" type="checkbox">
<div class="separator">|</div>
<div id="clear_filter" class="pointer">Clear</div>
2021-06-21 18:14:57 +00:00
</div>
</div>
2023-04-27 05:57:59 +00:00
<div id="list"></div>
2021-06-21 18:14:57 +00:00
</body>
</html>