Load JS before CSS

This commit is contained in:
Tressley Cahill 2022-10-26 10:09:55 -04:00
parent 53f00a6779
commit 8a0341d70f
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
> **trai´chu,** _n_. A simple, semantic start page built with HTML 5, CSS 3, and JavaScript.
This start page utilizes technologies such as [DuckDuckGo's favico API](https://icons.duckduckgo.com/ip3/duckduckgo.com.ico) and [inline SVGs](https://css-tricks.com/pretty-good-svg-icon-system/) to handle the images (with the exception of the traichu sprite).
This start page utilizes technologies such as [DuckDuckGo's favicon API](https://icons.duckduckgo.com/ip3/duckduckgo.com.ico) and [inline SVGs](https://css-tricks.com/pretty-good-svg-icon-system/) to handle the images (with the exception of the traichu sprite).
The color palette is composed of contrast accessibile, [WCAG 2.0](https://www.w3.org/TR/WCAG20/) compliant colors listed in [Japanese Industrial Standards](https://ja.wikipedia.org/wiki/JIS%E6%85%A3%E7%94%A8%E8%89%B2%E5%90%8D). The font is [Inconsolata](https://fonts.google.com/specimen/Inconsolata) loaded via [Google Fonts](https://fonts.google.com).

View File

@ -13,8 +13,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js"></script>
<link rel="stylesheet" href="css/main.css">
<title>_traichu</title>
</head>
<body onload="dateTime()">