I'm using w3css, and want to create a number of panels on a page. Each will contain a brief summary of another page, and when the panel is clicked, the user should be taken to that other page.
Here is a simplified extract from my current HTML. It looks how I want it to, but obviously nothing happens when you click the panel.
<div class="w3-panel">
<h2>Panel Title</h2>
<p>A summary of the page that the user will be taken to.</p>
</div>
This is what I've tried unsuccessfully so far:
1. Just adding "href=..." to the div.
<