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

27 lines
547 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="app.css" />
<script defer src="app.js"></script>
</head>
<body>
<h1>New Trello</h1>
<ul></ul>
<template>
<li draggable="true">
<h2>placeholder</h2>
<ul></ul>
<button class="add">Add</button>
<button class="delete">Delete</button>
<form>
<input typ="text" placeholder="new value"/>
<input type="submit" value="Update"/>
<input type="reset" value="Reset"/>
</form>
</li>
</template>
</body>
</html>