-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (52 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111564645-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111564645-1');
</script>
<meta charset="utf-8">
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tie - Font Conversion of The Finnish Traffic Sign Typeface</title>
<meta name="description" content="Free Digital Font Conversion for the Finnish Traffic Signs">
<meta name="keywords" content="typeface, font, finnish, traffic signs, road, signage, design, typography, typeface, tester">
<meta name="author" content="Esa Juhana Lahikainen">
</head>
<body>
<a href="https://github.com/thevangelist/tie/"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<h1>Tie</h1>
<h2>Font Conversion of The Finnish Traffic Sign Typeface | <a download href="https://github.com/thevangelist/tie/raw/master/fonts/Tie-Regular.otf">Download .OTF</a> | <a download href="https://github.com/thevangelist/tie/raw/master/fonts/Tie-Regular.woff">Download .WOFF</a></h2>
<p>Works with browsers that support @font-face and woff format.</p>
<input maxlength="30" type="text" id="sample" autofocus data-bind="value: sample, valueUpdate: 'afterkeyup'" />
<div class="container">
<div class="pole"></div>
<div class="outer">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="inner">
<div></div>
<div></div>
<div></div>
<div class="word" data-bind="text: sample">Lataa...</div>
</div>
<div class="shadow"></div>
</div>
<script src="//ajax.aspnetcdn.com/ajax/knockout/knockout-3.3.0.js"></script>
<script>
var ViewModel = function(sample) {
this.sample = ko.observable(sample);
};
ko.applyBindings(new ViewModel("Edit me"));
</script>
</body>
</html>