Stage 1 standings
Motorcycles
Pos. N° Name Make Time Variation Penalty
1 001 DESPRES / KTM 00:58:10 00:00:00
2 160 FARIA / KTM 00:58:14 00:00:04
3 002 COMA / KTM 00:58:17 00:00:07
4 055 RODRIGUES / YAMAHA 00:59:00 00:00:50
5 003 ESTEVE PUJOL KTM 00:59:10 00:01:00
Cars
1 307 SAINZ / SCHULZ VOLKSWAGEN 00:56:20 00:00:00
2 311 SOUSA / LURQUIN NISSAN 00:57:50 00:01:30
3 301 SABY / PERIN VOLKSWAGEN 00:58:11 00:01:51
4 303 KLEINSCHMIDT/PONSVOLKSWAGEN 00:58:44 00:02:24
5 322 CHICHERIT/BAUMEL BMW 00:59:22 00:03:02
14 335 GORDON/SKILTON HUMMER 01:00:59 00:04:39
Trucks
1 508 CHAGIN KAMAZ 01:12:59 00:00:00
2 512 BIASION IVECO 01:15:19 00:02:20
3 513 DE AZEVEDO TATRA 01:16:14 00:03:15
4 507 ALEN IVECO 01:19:37 00:06:38
5 519 VILA ROCA IVECO 01:20:32 00:07:33
I'm looking for pics of the days stage. I really need to learn how to do tabs for columns in HTML. :(
You could do one of two things -
- Swipe the HTML code from the site (click "View/Source" in IE, start copying with the <table class="classement">, end where you want (be sure to close the tags - see below).
- Make your own table.
A table set up like this...
<table width="580" cellspacing="0" cellpadding="2" border="0">
<tr><td>Pos.</td>
<td>N°</td>
<td>Name</td>
<td>Make</td>
<td>Time</td>
<td>Variation</td>
<td>Penalty</td></tr>
<tr><td>1</td>
<td>001</td>
<td>DESPRES/</td>
<td>KTM</td>
<td>00:58:10</td>
<td>00:00:00</td>
<td></td></tr></table>
...yields...
Pos. |
N° |
Name |
Make |
Time |
Variation |
Penalty |
1 |
001 |
DESPRES/ |
KTM |
00:58:10 |
00:00:00 |
|
<table> starts the table (you can specify the width like I did and some other variables), <tr> starts a row, <td> starts a cell, and a forward slash ('/') in front of the table, tr or td part of the tag described closes that tag.