--- /dev/null
+<style>
+ @font-face {
+ font-family: "Fimm";
+ src:
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.ttf),
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.otf) format("opentype"),
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.woff) format("woff"),
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.woff2) format("woff2");
+ }
+</style>
+
+<h1 style="font-family: 'Fimm'">Fimm font</h1>
+
+<hr>
+
+<p>
+ Font based on Finn's handwriting.<br>
+ <a href="https://data.ozva.co.uk/fimm-font/Fimm.zip">Download current build</a><br>
+ <a href="https://data.ozva.co.uk/fimm-font/demo.html">Font demo</a>
+ <a href="https://insects.ozva.co.uk">The <em>All Insects</em> website</a>
+</p>
+
+<h2 style="font-family: 'Fimm'">ABCDEFGHIJKLMNOPQRSTUVWXYZ</h2>
+<h2 style="font-family: 'Fimm'">abcdefghijklmnopqrstuvwxyz</h2>
+<h2 style="font-family: 'Fimm'">1234567890</h2>
+<h2 style="font-family: 'Fimm'">! " # % + , - . : ; = ? @</h2>
--- /dev/null
+<!DOCTYPE html>
+<html lang="">
+ <head>
+ <meta charset="utf-8">
+ <title>Fimm</title>
+ <style>
+
+@font-face {
+ font-family: "Fimm";
+ src:
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.ttf),
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.otf) format("opentype"),
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.woff) format("woff"),
+ url(https://data.ozva.co.uk/fimm-font/target/Fimm.woff2) format("woff2");
+}
+
+#fimm {
+ font-family: "Fimm", sans-serif;
+ font-size: 3em;
+ line-height: 70%;
+
+ border: 1px solid gray;
+ padding: 10px;
+
+ position: absolute;
+ top:calc(30% + 10px);
+ bottom:10px;
+ left:10px;
+ right:10px;
+}
+
+textarea {
+ position: absolute;
+ top:10px;
+ bottom:calc(70% + 10px);
+ left:10px;
+ right:10px;
+ resize: none;
+}
+
+ </style>
+ </head>
+ <body>
+ <textarea wrap="soft" id="area" cols="2">ok Guys this is the new Fimm font
+ </textarea>
+ <div id="fimm">
+ ok Guys this is the new Fimm font
+ </div>
+
+ <script>
+
+setInterval(function () {
+ let text = document.getElementById("area").value.replace("\n", "<br>");
+ document.getElementById("fimm").innerHTML = text;
+}, 100)
+
+ </script>
+ </body>
+</html>
+++ /dev/null
-<!DOCTYPE html>
-<html lang="">
- <head>
- <meta charset="utf-8">
- <title>Fimm</title>
- <style>
-
-@font-face {
- font-family: "Fimm";
- src:
- local("Fimm"),
- url("./Fimm.otf") format("opentype")
-}
-
-#fimm {
- font-family: "Fimm", sans-serif;
- font-size: 3em;
- line-height: 70%;
-
- border: 1px solid gray;
- padding: 10px;
-
- position: absolute;
- top:calc(30% + 10px);
- bottom:10px;
- left:10px;
- right:10px;
-}
-
-textarea {
- position: absolute;
- top:10px;
- bottom:calc(70% + 10px);
- left:10px;
- right:10px;
- resize: none;
-}
-
- </style>
- </head>
- <body>
- <textarea wrap="soft" id="area" cols="2">ok Guys this is the new Fimm font
- </textarea>
- <div id="fimm">
- ok Guys this is the new Fimm font
- </div>
-
- <script>
-
-setInterval(function () {
- let text = document.getElementById("area").value.replace("\n", "<br>");
- document.getElementById("fimm").innerHTML = text;
-}, 100)
-
- </script>
- </body>
-</html>