Using input and image elements, we can build interesting interfaces for settings.

Let's apply our knowledge on those elements to build an interface for computer settings like the one below.

<html>
<body>
<h4>Settings</h4>
<p>Brightness:</p>
<img src="https://mimo.app/i/brightness-icon.png" width="20">
<input type="range">
<p>Volume:</p>
<img src="https://mimo.app/i/volume-icon.png" width="20">
<input type="range">
</body>
</html>]]>