HTML and CSS Reference
In-Depth Information
filename and a pound/hash sign, # , we can link directly to that speaker's talk de-
scription and biography on the Speakers page.
Within the <a> element we'll include an <h4> element with the speaker's name
followed by the talk title.
The code for the first two workshops looks like this:
Click here to view code image
1. <table>
2. <thead>
3. <tr>
4. <th scope="row">
5. Workshops
6. </th>
7. <td colspan="2">
8. August 24th
9. </td>
10. </tr>
11. </thead>
12. <tbody>
13. <tr>
14. <th scope="row">
15. <time datetime="08:30:00">8:30 AM</time>
16. </th>
17. <td colspan="2">
18. Registration
19. </td>
20. </tr>
21. <tr>
22. <th scope="row">
23. <time datetime="09:00:00">9:00 AM</time>
24. </th>
25. <td>
26. <a href="speakers.html#adam-connor">
27. <h4>Adam Connor</h4>
28. Lights! Camera! Interaction! Design Inspiration from
Filmmakers
29. </a>
30. </td>
31. <td>
32. <a href="speakers.html#jennifer-jones">
33. <h4>Jennifer Jones</h4>
34. What Designers Can Learn from Parenting
35. </a>
36. </td>
37. </tr>
38. </tbody>
39. </table>
Search WWH ::




Custom Search