20 lines
582 B
HTML
20 lines
582 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" dir="ltr">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>document</title>
|
||
|
<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">
|
||
|
</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>
|