whisper.cat/weboasis/todo/old/index.html
2023-10-05 23:28:32 +11:00

23 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>WebOas.is - To-Do List</title>
<link rel="stylesheet" type="text/css" href="resources/css/reset.min.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.min.css">
</head>
<body>
<header>
<input type="text" placeholder="Enter an activity.." id="item">
<button id="add">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><path class="fill" d="M16,8c0,0.5-0.5,1-1,1H9v6c0,0.5-0.5,1-1,1s-1-0.5-1-1V9H1C0.5,9,0,8.5,0,8s0.5-1,1-1h6V1c0-0.5,0.5-1,1-1s1,0.5,1,1v6h6C15.5,7,16,7.5,16,8z"/></g></svg>
</button>
</header>
<div class="container">
<ul class="todo" id="todo"></ul>
<ul class="todo" id="completed"></ul>
</div>
<script src="resources/js/main.min.js"></script>
</body>
</html>