recipe-manager/browser-extension/popup.html

18 lines
479 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Recipe Manager</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main>
<h1>Recipe Manager</h1>
<p>Extension scaffold ready.</p>
<button id="open-options" type="button">Open Settings</button>
</main>
<script type="module" src="popup.js"></script>
</body>
</html>