Here is my code for adding a navigation bar. How can I simplify this? I want to be able to define it once and then reference that defined definition. Is that something that can be done?
<div class="navbar">
<a href="./index.html">Home</a>
<a href="./pastProjects.html">Past Projects</a>
<a href="./requestQuote.html">Get A Quote</a>
<a href="./contactInfo.html" class="right">Contact Me</a>
<a href="./reviews.html">My Reviews</a>
</div>
I have to put this in each HTML file for a page on my site. Is there any way to make this simpler and only define it once?