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.
33 lines
913 B
33 lines
913 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ToDo</title>
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
<style>
|
|
.todolistitem {
|
|
list-style-type: none;
|
|
font-size: 28px;
|
|
}
|
|
.velkytext{
|
|
font-size: 28px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 class="display-1 my-5">Todo List</h1>
|
|
|
|
<textarea class="form-control velkytext" name="todoitem" id="todoitem"
|
|
placeholder="Zde napiš úkol"></textarea>
|
|
<button class="btn btn-primary w-100 my-3 py-1 velkytext"
|
|
id="todobtn" onclick="additem()">Zapsat</button>
|
|
<hr>
|
|
<ul id="todolist"></ul>
|
|
</div>
|
|
|
|
<script src="todo.js"></script>
|
|
<script src="js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|