added doga
This commit is contained in:
39
20241011_doga/todo.html
Normal file
39
20241011_doga/todo.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="hu">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Feladatlista</title>
|
||||
<style>
|
||||
.feladat {
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px;
|
||||
margin: 5px 0;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.modositasGomb, .keszGomb {
|
||||
background-color: #007bff;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.keszGomb {
|
||||
background-color: #ff4d4d;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>To Do lista</h1>
|
||||
<label for="feladatNev">Feladat neve:</label>
|
||||
<input type="text" id="feladatNev">
|
||||
<label for="hatarido">Határidő:</label>
|
||||
<input type="text" id="hatarido">
|
||||
<button id="hozzaadGomb">Feladat hozzáadása</button>
|
||||
|
||||
<div id="feladatok"></div>
|
||||
|
||||
<script src="todo.js" defer> </script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user