Completing the challenge and getting everything up and running.
What challenges did you encounter, and how did you overcome them?I had some problems with getting the links to work as intended. At first, I had an unordered list with list items containing the a tags. The problem that occurred was that the user needed to press on the text inside of the buttons for the links to work. If the user pressed outside of the text but still within the button, the link would not work. I removed the a tag completely and made an event listener that listened for the onclick event. Then in js I created functions that would take the user to the correct webpage. Now that I think of it, I could probably make a function that takes a parameter (each webpage) and then use a template string to open the correct webpage. This would make it one function instead of five different ones.
What specific areas of your project would you like help with?Any feedback would be appreciated.