I am a bit new to programming, and I know this is probably a fairly newb question to be asking, but I guess I need someone to help point me the way a bit? I researched, but am still confused.
When making a website, and adding say, a menu that points to different pages, the html pages link to each other like....
<ul>
<li><a href="index.html">home</a></li>
<li> <a href="about.html">about</a></li>
</ul>
(for example) ... say that the html for home is the main page, titled index.html in the editor. Then say I want to add a second page, for about, I would have it link then to "about.html" Correct?
... So my question is, how do I apply this with CSS and JS as well? Because it already links to the html file, how do I have it link to a 2nd CSS and JS file as well? So that I can have CSS and JS on the multiple pages?
I am sure the answer is somewhat simple, but I am a beginner and very confused. Help? Thank you <3