What will the below lines of code ? How will they search for the cover.css file?
<link href="./css/home.css" rel="stylesheet">
<link href="../css/cover.css" rel="stylesheet">
I think ./ looks for the current directory and ../ looks for the entire drive. Am I correct?