source: buchla-68k/font/index.html@ 018c029

Last change on this file since 018c029 was 018c029, checked in by Thomas Lopatic <thomas@…>, 5 years ago

Create web fonts.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>Font</title>
6 <style type="text/css">
7 @font-face {
8 font-family: "buchla";
9 src: url("buchla.woff") format("woff"),
10 url("buchla.eot") format("embedded-opentype"),
11 url("buchla.ttf") format("truetype")
12 }
13
14 body {
15 font-family: "buchla";
16 font-size: 24px;
17 }
18 </style>
19 </head>
20 <body>
21 <p>
22 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
23 </p>
24 <p>
25 a b c d e f g h i j k l m n o p q r s t u v w x y z
26 </p>
27 <p>
28 0 1 2 3 4 5 6 7 8 9
29 </p>
30 <p>
31 ! " # $ % &amp; ' ( ) * + , - . / : ; &lt; = &gt; ? @ [ \ ] ^ _ ` { | } ~
32 </p>
33 <p>
34 &#x2820;
35 <p>
36 &#x2801; &#x2802; &#x2803; &#x2804; &#x2805; &#x2806; &#x2807; &#x2808; &#x2809; &#x280a; &#x280b; &#x280c;
37 </p>
38 <p>
39 &#x2841; &#x2842; &#x2843; &#x2844; &#x2845; &#x2847; &#x2849; &#x284a; &#x284b; &#x284c; &#x284d; &#x284e; &#x284f;
40 </p>
41 <p>
42 &#x280d;&#x280e;&#x280f; &#x2821;&#x2822;&#x2823;&#x2824; &#x2825;&#x2826;&#x2827;&#x2828; &#x2829;&#x282a;&#x282b;&#x282c; &#x282d;&#x282e;&#x282f;&#x2830;
43 </p>
44 <p>
45 &#x2831;&#x2832;&#x2833;&#x2834; &#x2835;&#x2836;&#x2837;&#x2838; &#x2839;&#x283a;&#x283b;&#x283c; &#x283d;&#x283e;&#x283f;&#x2840;
46 </p>
47 <p>
48 &#x2810; &#x2811; &#x2812; &#x2813; &#x2814; &#x2815; &#x2816; &#x2817; &#x2818; &#x2819; &#x281a; &#x281b; &#x281c; &#x281d; &#x281e;
49 </p>
50 <p>
51 &#x2861; &#x2862; &#x2863; &#x2864; &#x2865; &#x2866; &#x2867; &#x2868; &#x2869; &#x286a; &#x286b; &#x286c; &#x286d;
52 </p>
53 <p>
54 &#x2871; &#x2872; &#x2873; &#x2874; &#x2875; &#x2876; &#x2877;
55 </p>
56 <p>
57 &#x2851; &#x2852; &#x2853; &#x2854; &#x2855; &#x2856; &#x2857; &#x2858; &#x2859; &#x285a; &#x285b; &#x285c;
58 </p>
59 <p>
60 &#x285b;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x285c;
61 <br/>
62 &#x2851; Hello &nbsp;&nbsp;&nbsp; &#x2851;
63 <br/>
64 &#x2857;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2855;
65 <br/>
66 &#x2851; World &nbsp;&nbsp;&nbsp; &#x2851;
67 <br/>
68 &#x285a;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2852;&#x2859;
69 </body>
70</html>
Note: See TracBrowser for help on using the repository browser.