<!DOCTYPE html> <html lang="hu"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Feladatlista</title> <script src="js/todo.js" defer></script> <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> </body> </html>