I recently stumbled across this project https://jdan.github.io/98.css/
It’s a CSS stylesheet that implements the controls from the Windows 98 UI. It’s pretty cool:
<div class="window" style="width: 250px">
<div class="title-bar">
<div class="title-bar-text">
My First VB4 Program
</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<p>Hello, world!</p>
<section class="field-row" style="justify-content: flex-end">
<button>OK</button>
<button>Cancel</button>
</section>
</div>
</div>
I thought for half a second about implementing it for Xojo Web, but I’m not sure the semantics work out
Edit: Fixed image with mirror