--- /dev/null
+{%extends "base/page.html"%}
+{%block title%}Online Resources{%endblock%}
+{%block contents%}
+
+<h1>Online Resources <i class="fas fa-keyboard"></i></h1>
+
+<table class="table table-striped">
+ <thead class="thead-light">
+ <tr>
+ <th>Website URL</th>
+ <th>Description</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>
+ <a href="http://www.postgresqltutorial.com/">PostgreSQL Tutorial</a>
+ </td>
+ <td>Learn PostgreSQL and how to get started quickly through practical examples.</td>
+ </tr>
+ <tr>
+ <td>
+ <a href="http://www.tutorialspoint.com/postgresql/">Tutorials Point PostgreSQL</a>
+ </td>
+ <td>A full, free online course for walking through PostgreSQL, from the basics to advanced administration.</td>
+ </tr>
+ <tr>
+ <td>
+ <a href="https://pgexercises.com/">PG Exercises</a>
+ </td>
+ <td>Free online exercises for learning PostgreSQL in an interactive manner.</td>
+ </tr>
+ <tr>
+ <td>
+ <a href="https://zaiste.net/posts/postgresql_primer_for_busy_people/">PostgreSQL Primer for Busy People</a>
+ </td>
+ <td>A handy single-paged resource and reference guide for getting started with PostgreSQL.</td>
+ </tr>
+ <tr>
+ <td>
+ <a href="http://schemaverse.com/">Schemaverse</a>
+ </td>
+ <td>A space-based strategy game implemented entirely within a PostgreSQL database.</td>
+ </tr>
+ <tr>
+ <td>
+ <a href="https://github.com/dhamaniasad/awesome-postgres">Awesome Postgres</a>
+ </td>
+ <td>A curated list of awesome PostgreSQL software, libraries, tools and resources.</td>
+ </tr>
+ </tbody>
+</table>
+{%endblock%}