- Vendor Google Fonts: 23 woff2 + localized fonts.css under public/fonts/, referenced via /fonts/fonts.css. Drop the googleapis/gstatic preconnects and the (now unused) Font Awesome CDN link. No runtime external resource requests remain. - Dockerfile copies public/fonts into the nginx image. - html base font-size 16 -> 17px (all rem UI text scales up slightly). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 lines
478 B
HTML
15 lines
478 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="color-scheme" content="dark">
|
|
<title>Hangman Lab</title>
|
|
<link rel="icon" type="image/svg+xml" href="./icons/hangman-lab-logo.svg?v=hl-20260517">
|
|
<link rel="stylesheet" href="/fonts/fonts.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
|
|
</html> |