-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (35 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Helometer</title>
<meta name="description" content="How far to the nearest station?">
<meta name="theme-color" content="black">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico">
<script src='js/jquery-3.6.4.min.js'></script>
<script src="js/jquery.textfill.min.js"></script>
<script type="text/javascript">
<!--
$(document).ready(function() {
$('#textfill-container').textfill({maxFontPixels: 0});
});
$(window).resize(function() {
$('#textfill-container').textfill({maxFontPixels: 0});
});
-->
</script>
</head>
<body>
<div id="textfill-container">
<span id="cities">
<a href="helmetrometer.html">Helmetrometer</a><br>
<a href="heltrainometer.html">Heltrainometer</a><br>
<a href="helmetrainometer.html">Helmetrainometer</a><br>
<a href="https://citybikes.github.io">Helcitybikometer</a><br>
<a href="librometer.html">Librometer</a>
<a href="londometer.html">Londometer</a>
</span>
</div>
</body>
</html>