15 lines
336 B
HTML
15 lines
336 B
HTML
<!-- frontend/index.html -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Todo App</title>
|
|
<script src="main.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Todo App</h1>
|
|
<input type="text" id="todoInput" placeholder="Enter a todo">
|
|
<button onclick="addTodo()">Add</button>
|
|
<ul id="todoList"></ul>
|
|
|
|
</body>
|
|
</html> |