Files
LetsGet/index.html
Noah Shanaberger aba06f8e44 Version 0.0.6
Fixes an icon issue in Firefox, cleans up some code, and enhances the GUI a bit.
2021-10-10 17:38:32 -07:00

32 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en" style="width: 300px;">
<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="tailwind.css">
<title>Let's Get!</title>
</head>
<body class="bg-gray-800" style="width: 300px;">
<div class="p-5">
<h1 class="font-bold text-2xl text-blue-500 text-center mb-5">
Let's Get!
</h1>
<div class="flex items-center">
<input type="checkbox" class="checked:bg-blue-800 h-6 w-6" id="enabled">
<p class="ml-2 text-gray-200 font-semibold text-lg">Enabled</p>
</div>
<div class="text-blue-200 mt-6 text-center text-sm">
<p>
Developed by <a href="https://32bites.party/" class="text-blue-500 font-semibold" id="my_page">Noah Shanaberger</a>.
</p>
<p id="version"></p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>