tabswitcher/pages/search/search.html

22 lines
698 B
HTML

<!doctype html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>Tab List</title>
<link rel='stylesheet' href='../css/common.css' />
<link rel='stylesheet' href='./search.css' />
</head>
<body>
<header>
<input type='search' id='searchbox' placeholder='Enter search terms' autofocus />
<input type='search' id='actionbox' placeholder='Action (? for help)' />
</header>
<main id='searchResults'></main>
<!-- https://github.com/farzher/fuzzysort/blob/4096947da28d0831ee2a8ca67257c0b0c84915d1/fuzzysort.js -->
<script src="./vendor/fuzzysort.js"></script>
<!-- -->
<script type='module' src='./search.js'></script>
</body>
</html>