22 lines
494 B
HTML
22 lines
494 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<input type="text" id="searchbox" placeholder="Search…"/>
|
|
<button type="button" class="search button">Search</button>
|
|
<br/>
|
|
<script src="popup.js"></script>
|
|
<div>
|
|
<select id="presets">
|
|
</select>
|
|
<button type="button" class="save">Save</button>
|
|
<button type="button" class="remove">Delete</button>
|
|
</div>
|
|
<div id="boxes">
|
|
<br/>
|
|
</div>
|
|
</body>
|
|
</html>
|