-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcode.html
105 lines (96 loc) · 2.53 KB
/
code.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<html>
<head>
<meta charset="UTF-8" />
<title>Input: Fonts for Code</title>
<meta name="description" content="Input is a typeface for code, designed by David Jonathan Ross and released by Font Bureau."
/>
<meta name="author" content="David Jonathan Ross, Nick Sherman" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/fonts.css" />
</head>
<body>
<div id="header">
<div>
<div id="title">
<h1>
<a href="/">Input</a>
<span class="trademark">™</span>
</h1>
<div class="tagline">Fonts for Code
<span>, from Font Bureau</span>
</div>
</div>
<div id="nav">
<ul>
<li class="Introduction">
<a href="/">Intro</a>
</li>
<li class="Preview">
<a href="/preview/">Preview</a>
</li>
<li class="Info">
<a href="/info/">Info</a>
</li>
<li class="Download">
<a href="/download/">Download</a>
</li>
</ul>
</div>
<img height="0" width="100%" />
</div>
</div>
<div id="sticky-header">
<div>
<div id="title">
<h1>
<a href="/">Input</a>
<span class="trademark">™</span>
</h1>
<div class="tagline">Fonts for Code
<span>, from Font Bureau</span>
</div>
</div>
<div id="nav">
<ul>
<li>
<a href="/" class="Introduction">Introduction</a>
</li>
<li>
<a href="/preview/" class="Preview">Preview</a>
</li>
<li>
<a href="/info/" class="Info">Info</a>
</li>
<li>
<a href="/download/" class="Download">Download</a>
</li>
</ul>
</div>
<img height="0" width="100%" />
</div>
</div>
<div id="footer">
Site by
<a href="http://djr.com/">David Jonathan Ross</a> and
<a href="http://nicksherman.com/">Nick Sherman</a>. ©2014
<a href="#">The Font Bureau, Inc.</a>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<script src="/js/jquery.ui.touch.js"></script>
<script src="/js/scripts.js"></script>
<script src="/js/codemirror/lib/codemirror.js"></script>
<script type="text/javascript">
/* Press 'w' to toggle the debug class */
$(document).keydown(function (e) {
var key = e.which;
if (key == 87) {
$("html").toggleClass("debug");
}
var a = 1 != 2;
});
</script>
</body>
</html>