hey i am a newbie in HTML world, and i am trying to make a simple html webpage with css in it but the webpage is just blank, please help me outand also there are no error in the console.
linking14.html
<html>
<head>
<link href="C:\Users\Manuj Srivastava\Desktop\html tutorials\css\linking14.css" rel="stylesheet" type="text/css">
<!relation and accordingly type is set>
</head>
<body>
<div id="div1"></div>
<div id="div2"></div>
<div id="div3"></div>
<div id="div4"></div>
<div id="div5"></div>
<div id="div6"></div>
</body>
</html>
and linking14.css
#div1{
width: "300px";
height: "200px";
background: "firebrick"; <!#B222222>
}
#div2{
width:"300px";
height:"200px";
background:"skyblue";
}
#div3{
width:"300px";
height:"200px";
background:"slateblue"; <!#6A5ACD>
}
#div4{
width:"300px";
height:"200px";
background:"firebrick" ; <!#87CEEB>
}
#div5{
width:"300px";
height:"200px";
background:"#1BE7FF";
float:left;
}
#div6{
width:"300px";
height:"200px";
background:"#052633";
float:left;
}