Printable To Do List
Printing to-do lists
If you are like me, you often depend on to-do lists. I have used many fine tools over the years, including Google To-Do lists and Wunderlist, but at the end of the day it always helps to have something on paper. Don't get me wrong, I care about the environment as much as the next guy, if not more, but hand-written notes are just hard to beat. Here is a tiny script I wrote for myself and now share with you to print clean to-do lists for yourself.Print a to-do list
Useful Printable Files
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!