Printable To Do List

Code

<html>
    <head><title>Printable To-Do List</title></head>
    <body>
        <style>
            h1 { font-family:Verdana; text-align:center; margin:5px 0 10px 0; }
            .box { height:36px; border-bottom:1px solid #333; }
            .box span { height:26px; width:26px; margin:5px; display:block; border:3px solid #444; }
        </style>
        <h1 id="heading">To Do List</h1>
        <? for($i = 0; $i < 20; $i++){ ?><div class="box"><span> </span></div><? } ?>
        <script>
            var heading = prompt("Enter the name for your list:","To Do List");
            document.getElementById("heading").innerHTML = heading;
            window.print();
        </script>
    </body>
</html>
Speaking of to-do lists. If you haven't yet, check out the Wunderlist. It's the best to-do list app that works on Windows, Mac, Droid and iPhone. Nice GUI and UX!