mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-22 17:38:36 +03:00
16 lines
580 B
HTML
16 lines
580 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Ghostty Example</title>
|
|
<script type="module" src="app.ts"></script>
|
|
</head>
|
|
<body>
|
|
<p>Open your console, we are just debugging here.</p>
|
|
<p>The current <b>greyscale</b> font atlas is rendered below.</p>
|
|
<div><div id="atlas-canvas" style="display: inline-block; border: 1px solid green;"></div></div>
|
|
<p>The current <b>color</b> font atlas is rendered below.</p>
|
|
<div><div id="atlas-color-canvas" style="display: inline-block; border: 1px solid blue;"></div></div>
|
|
</body>
|
|
</html>
|