Looking to customize the width and height of a table in HTML? Want to change the color and font size of a link (font covered with green)? I aim to create visually appealing pages like project_list.html shown below. Any assistance is greatly appreciated:
{% extends 'base.html' %}
{% block content %}
<nav aria-label="breadcrumb">
</nav>
<h3 class="mb-3">Courses I'm Studying</h3>
<div class="card">
<table class="table mb-0">
<thead>
<tr>
<th>Course Number</th>
<th>Course Name</th>
<th>Department Name</th>
<th>Course Date</th>
<th>Course Time</th>
<th></th>
</tr>
</thead>
<tbody>
{% for course in courses %}
<tr>
<td class="align-middle">{{ course.pk }}</td>
<td class="align-middle" style="word-break: break-all;"><a href="{% url 'employees:course_detail' course.pk%}">{{ course.name }}</a></td>
<td class="align-middle">{{ course.department.get_html_badge }}</td>
<td class="align-middle">{{ course.date }}</td>
<td class="align-middle">{{ course.time }}</td>
</tr>
{% empty %}
<tr>
<td class="bg-light text-center font-italic" colspan="4">No courses available for selected skillset.</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div class="card-footer">