Below is a snippet of my html code
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<title>Learning D3</title>
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<title>Learning D3</title>
<link rel = "stylesheet" href="css/main.css">
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
I am using chromium as my browser on Linux. My main.css file is not getting loaded for this page. it is inside a css folder and I think I am referencing it correctly in my html.
<link rel = "stylesheet" href="css/main.css">
Also, when I check the source inside the developer options in chromium, I do see a folder named css with main.css inside it. But "main.css" shows up empty.
I am unable to figure out what seems to be going wrong here.Thanks in advance.