20 lines
489 B
HTML
20 lines
489 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Face Light</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
<link rel="icon" href="app.svg">
|
|
<link rel="stylesheet" href="app.css">
|
|
<script src="app.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<img class="icon" src="app.svg">
|
|
<input type="range" min=3200 max=6500 class="slider" id="temp">
|
|
<span id="tempOut"></span>
|
|
K
|
|
</div>
|
|
</body>
|
|
</html>
|