Untitled
<!DOCTYPE html> <html> <head> <title>Digital Planner</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <h1>Digital Planner</h1> <div id="calendar"></div> <div id="planner-content"> <h2>Your Planner Content</h2> <ul id="task-list"> <!-- Task items will be dynamically added here --> </ul> </div> <script src="script.js"></script> </body> </html>