-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (44 loc) · 2.18 KB
/
index.html
File metadata and controls
52 lines (44 loc) · 2.18 KB
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
<!DOCTYPE html>
<html lang="en" itemscope>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="preload" as="font" href="/font/league_mono_variableregular.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="/font/leaguespartan-bold-webfont.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="stylesheet" href="/style.css">
<title>Variable League</title>
<meta name="application-name" content="Variable League">
<meta name="keywords" content="Variable League">
<meta name="description" content="Variable League">
<link rel="icon" type="image/jpeg" href="/favicon.jpeg">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#F9A664">
<meta property="og:image" content="https://variable-league.vercel.app/favicon.jpeg">
<meta name="twitter:image" content="https://variable-league.vercel.app/favicon.jpeg">
<meta itemprop="image" content="https://variable-league.vercel.app/favicon.jpeg">
<meta name="msapplication-navbutton-color" content="#F9A664">
</head>
<body>
<div id="preview-container">
<div id="preview">Start typing</div>
</div>
<textarea class="heading" spellcheck="false" autofocus="" autocomplete="off" autocorrect="off" autocapitalize="off"></textarea>
<script src="/league.js"></script>
<div id="attribution">
<div class="slidecontainer">
<p>Weight</p>
<input type="range" min="30" max="200" step="0" value="80" class="slider" id="weight" oninput="setWeight(this.value)" onchange="setWeight(this.value)">
</div>
<br>
<div class="slidecontainer">
<p>Width</p>
<input type="range" min="50" max="200" step="0" value="100" class="slider" id="width" oninput="setWidth(this.value)" onchange="setWidth(this.value)">
</div>
<br><br>
<p>Crafted by <a href="https://abhinavbassi.com/" target="_blank">Abhinav Bassi</a> in Bethlehem</p>
<p>Not possible without <a href="https://twitter.com/typeler" target="_blank">@typeler</a></p>
</div>
</body>
</html>