2023-05-09 17:41:12 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
2023-05-09 18:07:48 +03:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-05-09 17:41:12 +03:00
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">
|
2023-05-09 18:07:48 +03:00
|
|
|
<title>document</title>
|
2023-05-09 17:41:12 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="brightness-box">
|
|
|
|
<i class="far fa-sun"></i>
|
|
|
|
<input type="range" id="range" min="10" max="100" value="100">
|
|
|
|
<i class="fas fa-sun"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|