I have a menu with buttons that need to redirect users to specific pages when clicked. Here is what I have written:
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
I was told that I need to create separate HTML documents for each page, which I have done. However, I am now unsure how to properly insert them into the code. (I apologize if the HTML formatting is not clear, as I am having trouble viewing it while writing in HTML tags).