I have a main page called homepage.html that currently links to styles.css (which creates a table). However, I also need homepage.html to link to styles12.css because it contains the CSS for tabs.
Is there a way to reference two .css files?
<title>Testing Css/HTML files</title>
<link rel="stylesheet" type="text/css" href="style.css" />
Can I just add another
<link rel="stylesheet" type="text/css" href="style12.css" />
?