Typographic work planner
No one likes being told what to do, especially if it’s work related, but nevertheless jobs need done. Why present boring stuff in a boring way? If you’re going to be told what to do, at least soften the blow by being told nicely. Enter this, a little HTML/CSS typographic work planner. By using some super-semantic HTML and a dash of CSS you can craft a beautiful looking yet incredibly simple work planner for you and your staff.
Typographic work planner markup:
The rich, semantic markup is as follows. Notice the use of the more semantic elements and attributes such as summary="", colgroup, scope="", caption and more...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Typographic work planner</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body id="home">
<div id="wrapper">
<table summary="An overview of upcoming and recently completed work ?
by employees">
<caption>Work schedule</caption>
<colgroup>
<col id="date" />
<col id="user" />
<col id="dec" />
</colgroup>
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">User</th>
<th scope="col">Description</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="3">Sense Internet Ltd work planner</td>
</tr>
</tfoot>
<tbody>
<tr>
<td class="date">20 December, 2009</td>
<td class="user">Harry Roberts</td>
<td class="desc">Lorem ipsum dolor sit amet, elit. Nunc ?
rhoncus dui et mauris. Nam augue felis, dapibus ut, condimentum ?
in, ornare a, est. Proin sem risus, pretium ut, mattis nec.</td>
</tr>
<tr>
<td class="date">20 December, 2009</td>
<td class="user">Joe Whitley</td>
<td class="desc">Suspendisse venenatis. Donec eleifend ?
dignissim diam. Integer faucibus neque tempor pede. Maecenas at ?
magna sed lectus adipiscing molestie. Pellentesque habitant morbi ?
tristique senectus et netuset malesuada fames ac turpis egestas. ?
Curabitur sodales gravida tellus.</td>
</tr>
<tr>
<td class="date">21 December, 2009</td>
<td class="user">Harry Roberts</td>
<td class="desc">Lorem ipsum dolor sit amet, elit. Nunc ?
rhoncus dui et mauris. Nam augue felis, dapibus ut, condimentum ?
in, ornare a, est. Proin sem risus, pretium ut, mattis nec.</td>
</tr>
<tr>
<td class="date">21 December, 2009</td>
<td class="user">Joe Whitley</td>
<td class="desc">Suspendisse venenatis. Donec eleifend ?
dignissim diam. Integer faucibus neque tempor pede. Maecenas at ?
magna sed lectus adipiscing molestie. Pellentesque habitant morbi ?
tristique senectus et netuset malesuada fames ac turpis egestas. ?
Curabitur sodales gravida tellus.</td>
</tr>
<tr>
<td class="date">21 December, 2009</td>
<td class="user">Sam Penrose</td>
<td class="desc">Lorem ipsum dolor sit amet, elit. Nunc ?
rhoncus dui et mauris. Nam augue felis, dapibus ut, condimentum ?
in, ornare a, est. Proin sem risus, pretium ut, mattis nec.</td>
</tr>
<tr class="today">
<td class="date">22 December, 2009</td>
<td class="user">Joe Whitley</td>
<td class="desc">Suspendisse venenatis. Donec eleifend ?
dignissim diam. Integer faucibus neque tempor pede. Maecenas at ?
magna sed lectus adipiscing molestie. Pellentesque habitant morbi ?
tristique senectus et netuset malesuada fames ac turpis egestas. ?
Curabitur sodales gravida tellus.</td>
</tr>
<tr class="today">
<td class="date">22 December, 2009</td>
<td class="user">Sam Penrose</td>
<td class="desc">Lorem ipsum dolor sit amet, elit. Nunc ?
rhoncus dui et mauris. Nam augue felis, dapibus ut, condimentum ?
in, ornare a, est. Proin sem risus, pretium ut, mattis nec.</td>
</tr>
<tr class="today">
<td class="date">22 December, 2009</td>
<td class="user">Joe Whitley</td>
<td class="desc">Suspendisse venenatis. Donec eleifend ?
dignissim diam. Integer faucibus neque tempor pede. Maecenas at ?
magna sed lectus adipiscing molestie. Pellentesque habitant morbi ?
tristique senectus et netuset malesuada fames ac turpis egestas. ?
Curabitur sodales gravida tellus.</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
In detail...
There are a few things in the table you may not have seen before, briefly, they are:
summary="": This is an attribute which provides a brief overview of the table and its contents/purpose.caption: This is a table specific caption, essentially a heading/title explicitly for the table.colgroupandcol: This is an essentially invisible element that just adds semantic meaning to the table. It defines the columns and can—in some browsers—be used to style them.scope="col": This is an attribute which tells the browser whether thethis a title for a column or a row. This then obviously makes the other possible attribute valuerow.tfoot: This is a table footer and contain pretty much anything you like. It must however appear before thetbody.
Typographic work planner CSS:
The CSS used to create the work planner is pretty basic, with a dash or progressive enhancement added via some CSS3. View the full CSS file with reset etc.
table{
margin-bottom:20px;
}
td,th{
border-bottom:1px solid #ccc;
}
tbody tr{
background:#fff;
}
tbody tr:nth-of-type(even){
background:#ffc;
}
th,tfoot,caption{
font-family:Helvetica, Arial, Verdana, sans-serif;
font-size:1.6em;
font-weight:bold;
}
th,td{
padding:10px 0;
}
caption{
font-size:2.4em;
position:absolute;
left:-9999px;
}
.date{
width:160px;
padding:10px 15px 10px 5px;
font-family:Georgia, "Times New Roman", Times;
font-size:1.6em;
font-style:italic;
}
.user{
width:460px;
padding-right:20px;
font-family:Helvetica, Arial, Verdana, sans-serif;
font-size:4.8em;
font-weight:bold;
}
.desc{
width:280px;
font-size:1.2em;
}
tbody tr.today{
background:#ff8;
text-shadow:1px 1px 1px rgba(0,0,0,0.3);
}
tfoot{
color:#666;
}
tfoot td{
padding:10px 5px;
}