Designed with WordPress
On this day i worked on building a tech conference schedule in a spreadsheet format i used html for this project as i am finishing up my html certificate on code camp, today i mainly relied and used <tbody> element, <tr>, and also <th> to create this table. I will also include pictures and some code at the bottom.

<table>
<caption>Schedule by Track and Time</caption>
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">Track A</th>
<th scope="col">Track B</th>
<th scope="col">Track C</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">9:00 AM</th>
<td>Keynote: Tech Future</td>
<td>Intro to Web Dev</td>
<td>UX for All</td>
</tr>
<tr>
<th scope="row">10:00 AM</th>
<td>Accessibility Deep Dive</td>
<td>CSS for Beginners</td>
<td>Inclusive Design Principles</td>
</tr>
<tr>
<th scope="row">11:00 AM</th>
<td colspan="3">Break</td>
</tr>
<tr>
<th scope="row">11:30 AM</th>
<td>AR/VR in Education</td>
<td>JavaScript Fundamentals</td>
<td>Design Systems at Scale</td>
</tr>
<tr>
<th scope="row">12:30 PM</th>
<td colspan="3">Lunch Break</td>
</tr>
</tbody>
</table>
This was mostly the code used for this project as you can see the <tbody> element, <tr>, and also <th>. That will be all for today thankyou very much.
Proudly powered by WordPress

Leave a Reply