Today time failed me,
all I was able to make is a small part of a pixel art website, the style.css is empty…
<!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">
<link rel="stylesheet" href="style.css">
<title>Pexil Art generator</title>
</head>
<body>
<div class="wrapper">
<div class="options">
<div class="opt-wrapper">
<div class="slider">
<label for="width-range">Grid Width</label>
<input type="range" id="width-range" min="1" max="1" value="00">
<span id="width-value">00</span>
</div>
<div class="slider">
<label for="height-range">Grid Height</label>
<input type="range" id="height-range" min="1" max="1" value="00">
<span id="height-value">00</span>
</div>
</div>
<div class="opt-wrapper">
<button id="submit-grid">Create Grid</button>
<button id="clear-grid">Clear Grid</button>
<input type="color" id="color-input">
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>

I should work on this more later. it looks interesting. i wasted the first couple minutes of the class searching for projects.
ASMR Programming – 100 Days of JavaScript Coding – No Talking
this is the video I was following.