mirror of
https://github.com/vee1e/itoa.git
synced 2026-09-01 11:08:20 +00:00
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Convert images to ASCII art with optional color support" />
|
|
<meta name="theme-color" content="#0a0a0f" />
|
|
|
|
<!-- Open Graph / Social Media -->
|
|
<meta property="og:title" content="ITOA: Image to ASCII Converter" />
|
|
<meta property="og:description" content="Convert images to ASCII art with optional color support" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://itoa.hex.dance" />
|
|
|
|
<!-- Twitter -->
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:title" content="ITOA: Image to ASCII Converter" />
|
|
<meta name="twitter:description" content="Convert images to ASCII art with optional color support" />
|
|
|
|
<title>ITOA: Image to ASCII Converter</title>
|
|
|
|
<!-- Initial favicon (will be updated by JS) -->
|
|
<link rel="icon" type="image/x-icon" href="data:image/x-icon;base64,">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|