38 lines
908 B
HTML
Raw Normal View History

<!DOCTYPE html>
2021-06-10 20:58:48 +02:00
<html>
<head>
2021-06-21 10:54:28 +02:00
<title>ESP8266 Treppenlicht</title>
<!-- main style sheet -->
2021-06-23 15:56:27 +02:00
<link href="/favicon.png" rel="icon" type="image/png" sizes="10x10">
2021-06-21 10:54:28 +02:00
<link href="/style.css" rel="stylesheet" type="text/css">
</head>
<body>
2021-06-23 15:56:27 +02:00
<div class="kopfzeile"
style="text-align: center;">
<b>Treppenlicht</b>
2021-06-21 10:54:28 +02:00
</div>
2021-06-23 15:56:27 +02:00
<div class="ueberschrift">
<center>Helligkeit</center>
<div class="slider">
<label id="label_pwm">
2021-06-21 10:54:28 +02:00
</label>
2021-06-23 15:56:27 +02:00
<input type="range" class="testregler" min="0" max="100">
2021-06-21 10:54:28 +02:00
</div>
2021-06-23 15:56:27 +02:00
</div>
<br>
<div class="ueberschrift">
<center>Laufgeschwindigkeit</center>
<div class="slider">
<label id="label_geschwindigkeit">
</label>
<input type="range" class="testregler" min="0" max="100">
2021-06-21 15:32:38 +02:00
</div>
2021-06-21 10:54:28 +02:00
</div>
2021-06-23 15:56:27 +02:00
</body>
2021-06-10 20:58:48 +02:00
2021-06-21 10:54:28 +02:00
<script src="/input.js"></script>
2021-06-10 20:58:48 +02:00
</html>