-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.3 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script async src="script.js"></script>
</head>
<body class="vh-100" data-bs-theme='dark'>
<div class="vh-100 container d-flex align-items-center justify-content-center flex-column">
<p class="text-align-center" style="text-align: center;">
checkbox - Вкл/Выкл<br>
range - скорость
</p>
<div class="input-group mb-3">
<div class="input-group-text">
<input class="input form-check-input mt-0" type="checkbox" checked>
</div>
<input type="text" class="vname form-control" style="background: #161616;color: #fff;">
</div>
<input type="range" class="form-range" id="customRange1" value="100" step="1" min="60" max="160">
</div>
</body>
</html>