TIMBOVILL commited on
Commit
2738bcb
·
verified ·
1 Parent(s): 67c45ed

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +9 -4
index.html CHANGED
@@ -7,8 +7,8 @@
7
  src: url("/Stencil.otf");
8
  }
9
  @font-face {
10
- font-family: Rails;
11
- src: url("/Rails.otf");
12
  }
13
  @font-face {
14
  font-family: Aldrich;
@@ -17,10 +17,11 @@
17
  </style>
18
  <meta charset="UTF-8">
19
  <title>Standby</title>
20
- <meta name="viewport" content="width=device-width, initial-scale=1">
21
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
22
  <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
23
  <link rel="manifest" href="manifest.json" />
 
24
  <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Aldrich'>
25
  <link rel="stylesheet" href="./style.css">
26
  <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
@@ -39,7 +40,7 @@
39
  <div class="font-options">
40
  <h3>Select Font</h3>
41
  <div class="font-option" onclick="changeFont('Stencil')">Stencil</div>
42
- <div class="font-option" onclick="changeFont('Rails')">Rails</div>
43
  <div class="font-option" onclick="changeFont('Aldrich')">Aldrich</div>
44
  </div>
45
  <div class="toggle-options">
@@ -53,6 +54,10 @@
53
  <label for="toggleAmPm">Show AM/PM</label>
54
  </div>
55
  </div>
 
 
 
 
56
  </div>
57
  <button onclick="toggleMenu()">Done</button>
58
  </div>
 
7
  src: url("/Stencil.otf");
8
  }
9
  @font-face {
10
+ font-family: Roboto;
11
+ src: url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxM.woff2");
12
  }
13
  @font-face {
14
  font-family: Aldrich;
 
17
  </style>
18
  <meta charset="UTF-8">
19
  <title>Standby</title>
20
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
21
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
22
  <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
23
  <link rel="manifest" href="manifest.json" />
24
+ <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto'>
25
  <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Aldrich'>
26
  <link rel="stylesheet" href="./style.css">
27
  <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
 
40
  <div class="font-options">
41
  <h3>Select Font</h3>
42
  <div class="font-option" onclick="changeFont('Stencil')">Stencil</div>
43
+ <div class="font-option" onclick="changeFont('Roboto')">Roboto</div>
44
  <div class="font-option" onclick="changeFont('Aldrich')">Aldrich</div>
45
  </div>
46
  <div class="toggle-options">
 
54
  <label for="toggleAmPm">Show AM/PM</label>
55
  </div>
56
  </div>
57
+ <div class="spacing-options">
58
+ <h3>Character Spacing</h3>
59
+ <input type="range" id="spacingSlider" min="0" max="20" value="7" onchange="adjustSpacing(this.value)">
60
+ </div>
61
  </div>
62
  <button onclick="toggleMenu()">Done</button>
63
  </div>