diff options
author | P. J. McDermott <pjm@nac.net> | 2011-11-02 16:24:19 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2011-11-02 16:24:19 (EDT) |
commit | 8243ec39f5a98dfa913ffc2e292a7fe1b21f62d4 (patch) | |
tree | 07dee02664c431e5cca0f61796bc4eb34f31da40 /contact.html | |
parent | bbafa2716e5917941a0c1b963618ac5260aa387d (diff) | |
download | www-8243ec39f5a98dfa913ffc2e292a7fe1b21f62d4.zip www-8243ec39f5a98dfa913ffc2e292a7fe1b21f62d4.tar.gz www-8243ec39f5a98dfa913ffc2e292a7fe1b21f62d4.tar.bz2 |
Use a table instead of a dl for contact info.
Diffstat (limited to 'contact.html')
-rwxr-xr-x | contact.html | 66 |
1 files changed, 36 insertions, 30 deletions
diff --git a/contact.html b/contact.html index e4bd6e4..ab8ebf8 100755 --- a/contact.html +++ b/contact.html @@ -1,35 +1,41 @@ <!--#include file="includes/header.html" --> <h2>Contact Information</h2> - <dl> - <dt> - E-mail - </dt> - <dd> - You can reach me at - <a href="mailto:pjm@nac.net"><mailto:pjm@nac.net></a>. - I try to respond to messages within a few days, depending on - my schedule and priorities. - </dd> - <dt> - IRC - </dt> - <dd> - I use <a href="http://freenode.net/">the Freenode IRC - network</a>, where my nickname is "pehjota". If you need to, - you can query me there. I leave my client connected all the - time, and I'm often away from my workstation, so I might not - reply for at least a few hours. - </dd> - <dt> - XMPP/Jabber - </dt> - <dd> - I have an XMPP ID, but I rarely have my XMPP client running - as few people contact me this way. If you'd like to talk to - me over XMPP, you should first let me know via some other - communication medium. - </dd> - </dl> + <table class="contact"> + <tr> + <th scope="row"> + E-mail + </th> + <td> + You can reach me at + <a href="mailto:pjm@nac.net"><mailto:pjm@nac.net></a>. + I try to respond to messages within a few days, + depending on my schedule and priorities. + </td> + </tr> + <tr> + <th scope="row"> + IRC + </th> + <td> + I use <a href="http://freenode.net/">the Freenode IRC + network</a>, where my nickname is "pehjota". If you need + to, you can query me there. I leave my client connected + all the time, and I'm often away from my workstation, so + I might not reply for at least a few hours. + </td> + </tr> + <tr> + <th scope="row"> + XMPP/Jabber + </th> + <td> + I have an XMPP ID, but I rarely have my XMPP client + running as few people contact me this way. If you'd like + to talk to me over XMPP, you should first let me know + via some other communication medium. + </td> + </tr> + </table> <p> Note that I only use standardized protocols for communication. I only use client software that respects my freedom as a computer |