27 lines
591 B
HTML
27 lines
591 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- <script src="dist/index.js"></script> -->
|
|
<title>01-my-app</title>
|
|
<style>
|
|
#list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<ul id="list"></ul>
|
|
<form id="new-task-form">
|
|
<input type="text" id="new-task-title">
|
|
<button type="submit">Add</button>
|
|
</form>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
|
|
</html> |