Notes from my week. Continue reading Weeknotes 2020.12.07–2020.12.13
Tag: Python
Using a Simple Python Server for Local Resources
I recently discovered that Chrome does not allow the loading of local resources when I tried to link a stylesheet from one local project to another. Here is an example of what I tried to add to the HTML in my project:
<link rel="stylesheet" href="file:///Users/name/Directory/style.css">
And Chrome gave me this error:
Not allowed to load local resource
Continue reading Using a Simple Python Server for Local Resources