You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
911 B
HTML

<!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" />
<script src="dist/index.js" type="module"></script>
<!-- <link rel="stylesheet" href="../css/default.css" media="only screen" /> -->
<title>Document</title>
<style>
#list {
list-style: none;
padding: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="title">
<h1>Would this be a <i>To-do-list</i>?</h1>
</div>
<div class="thelist">
<div class="typingform">
<form id="new-task-form">
<input type="text" id="new-task-title" />
<button type="submit">Add</button>
</form>
</div>
<ul id="list"></ul>
</div>
</div>
</body>
</html>