This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
lunk/chrome-extension/popup/popup.html

26 lines
626 B
HTML
Raw Normal View History

2021-06-11 00:47:16 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="stylesheets/toggle_button.css">
<link rel="stylesheet" href="stylesheets/style.css">
<script src="index.js" defer></script>
</head>
<body>
2021-06-16 14:48:44 +02:00
<h1>Lunk</h1>
2021-06-11 00:47:16 +02:00
<div>
<div class="setting">
<h2>On/Off:</h2>
<label class="switch">
2021-06-16 14:48:44 +02:00
<input type="checkbox" id="onOffSwitch" checked>
2021-06-11 00:47:16 +02:00
<span class="slider round"></span>
</label>
</span>
</div>
</body>
</html>