I have a homepage.html and it refers to styles.css(makes a table). But I also want homepage.html to refer to styles12.css because in styles12.css I have the css for taps.
how would I refer to two .css files?
<title>Testing Css/HTML files</title>
<link rel="stylesheet" type="text/css" href="style.css" />
Can I just make another <link rel="stylesheet" type="text/css" href="style12.css" />
?