There are several places where there are individual <style> blocks inside HTML files.
Need to move them into a common style.css file and include them in header.html:
I am including the style.css file in header.html right now because it will probably get edited a lot in development. At some point, it should be moved into /static and linked rather than included.
Requirements
There are several places where there are individual
<style>
blocks inside HTML files. Need to move them into a commonstyle.css
file and include them inheader.html
: