-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
81 lines (81 loc) · 4.45 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Test of my own hand-writing font</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />
<!-- Different styles -->
<link rel="stylesheet" type="text/css" media="screen" href="css/Default.css" title="Default"/>
<link rel="stylesheet alternate" type="text/css" media="screen" href="css/Bootstrap.css" title="Bootstrap"/>
<link rel="stylesheet alternate" type="text/css" media="screen" href="css/Ubuntu.css" title="Ubuntu"/>
<link rel="stylesheet alternate" type="text/css" media="screen" href="css/Tangerine.css" title="Tangerine"/>
<link rel="stylesheet alternate" type="text/css" media="screen" href="css/LilianFeb.css" title="LilianFeb"/>
<link rel="stylesheet alternate" type="text/css" media="screen" href="css/LilianFeb2.css" title="LilianFeb2"/>
<link rel="stylesheet alternate" type="text/css" media="screen" href="css/LilianMar.css" title="LilianMar"/>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div>
<form>
<input type="submit" onclick="switch_style('Default');return false;" name="theme" value="Default font" id="Default">
<input type="submit" onclick="switch_style('Bootstrap');return false;" name="theme" value="Bootstrap font" id="Bootstrap">
<input type="submit" onclick="switch_style('Ubuntu');return false;" name="theme" value="Ubuntu font" id="Ubuntu">
<input type="submit" onclick="switch_style('Tangerine');return false;" name="theme" value="Tangerine font" id="Tangerine">
<input type="submit" onclick="switch_style('LilianFeb');return false;" name="theme" value="LilianFeb font" id="LilianFeb">
<input type="submit" onclick="switch_style('LilianFeb2');return false;" name="theme" value="LilianFeb2 font" id="LilianFeb2">
<input type="submit" onclick="switch_style('LilianMar');return false;" name="theme" value="LilianMar font" id="LilianMar">
</form>
</div>
<div>
<h2>Playground</h2>
<p>See this font in action!</p>
<textarea placeholder="The quick brown fox jumps over the lazy dog. 0123456789. ; : ! ? / & ~ # ' { ( [ - | _ \\ @ ) ] } = +"></textarea>
</div>
<br><hr><br>
<div class="noligatures">
<h1>Test in English</h1>
<h2>Lowercase letters separated</h2>
<p>a b c d e f g h i j k l m n o p q r s t u v x y z</p>
<h2>Uppercase letters separated</h2>
<p>A B C D E F G H I J K L M N O P Q R S T U V X Y Z</p>
<h2>Lowercase letters</h2>
<p>the quick brown fox jumps over the lazy dog</p>
<h2>Uppercase letters</h2>
<p>THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG</p>
<h2>Symbols</h2>
<p>, ; : ! ? . / § % * ^ $ & ~ " # ' { ( [ - | _ \ @ ) ] = + }</p>
<h2>Numbers</h2>
0 1 2 3 4 5 6 7 8 9
<h2>Ligatures?</h2>
<p>ij th st ct et ft ff fs fi fl ffl ffi</p>
<p class="withligatures">ij th st ct et ft ff fs fi fl ffl ffi</p>
<hr>
<h1>Test en français</h1>
<h2>Lettres minuscules séparées</h2>
<p>a b c d e f g h i j k l m n o p q r s t u v x y z
à é è ç ë ù ï ê ü î ô œ ÿ â û æ</p>
<h2>Lettres majuscules séparées</h2>
<p>A B C D E F G H I J K L M N O P Q R S T U V X Y Z
À É È Ç Ë Ù Ï Ê Ü Î Ô Œ Ÿ Â Û Æ</p>
<h2>Lettres minuscules</h2>
<p>dès noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !</p>
<p>voix ambiguë d'un cœur qui, au zéphyr, préfère les jattes de kiwis.</p>
<h2>Lettres majuscules</h2>
<p>DÈS NOËL OÙ UN ZÉPHYR HAÏ ME VÊT DE GLAÇONS WÜRMIENS JE DÎNE D’EXQUIS RÔTIS DE BŒUF AU KIR À L’AŸ D’ÂGE MÛR & CÆTERA !</p>
<p>VOIX AMBIGUË D'UN CŒUR QUI, AU ZÉPHYR, PRÉFÈRE LES JATTES DE KIWIS.</p>
</div>
<br><hr><br>
<div>
<h1>Test of pre and code</h1>
<code>
This box contains some code in a <code> block.
</code>
<br>
<pre>
This box contains some code in a <pre> block.
</pre>
</div>
</body>
</html>