Copyright © 2018–2022, Christopher Alan Mosher, Shelton, Connecticut, USA, cmosher01@gmail.com.
A web server that serves a curated set of Unicode Web Fonts, covering a huge set of languages, both ancient and modern, along with a plain-style stylesheet.
Available as a Docker image, so you can host your own web-font server.
You can view an example server.
There are three main stylesheets in the system:
- reset.css normalizes HTML5 elements across browsers
- solarized.css Solarized color scheme
- fonts.css unicode webfonts (requires Docker image web server)
These can be used separately. See test.html for a small example.
docker run -d -p 8080:80 ghcr.io/cmosher01/plainwebcss
Then browse to http://localhost:8080/ to test. View sources for examples of use.
test.html
<!doctype html>
<html class="unicodeWebFonts fontFeatures solarizedLight">
<head>
<meta charset="UTF-8">
<title>Test</title>
<link rel="stylesheet" href="test.css">
</head>
<body>
<p>Test</p>
</body>
</html>
test.css
@import url("reset.css");
@import url("solarized.css");
@import url("fonts.css");