Quick question about CSS design. We currently have 4 different HTML files for different pages within the program. Would I need 4 different corresponding CSS files to do my web design or not? If so, what would I name them?
You can use one CSS styling page for all your HTML pages. just include the link to your style page in all the html
1 Like
<link href="style.css" rel="stylesheet" type="text/css" />
put that in the tag on all your html files
1 Like
Also, if that is what you were looking for, pls hit solution.
Thanks!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.