I have just started learning to code.
I made my multipage resume in HTML, and now I began to add style.
I was expecting the change to come in all pages, but it was only the index page that showed the changes. Other pages did not.
What am I doing wrong here? Appreciate the help.
Please note that this was done locally in VS code.
Thanks.
Vaib
I first created a style.css with the following simple code.
html {
background:greenyellow;
font-size: 12;
font-weight: bold;
text-align: center;
}
And then I linked my index.html to the stylesheet.
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=devide-width, initial-scale=1.0">
<link
rel="stylesheet"
href="./style.css"
/>
<title>Vaibhav's e-Resume></title>
</head>`