-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck-font.html
More file actions
31 lines (31 loc) · 848 Bytes
/
check-font.html
File metadata and controls
31 lines (31 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Zen Dots', sans-serif;
padding: 20px;
background: #1a1a2e;
color: white;
}
.test {
font-size: 40px;
margin: 20px 0;
}
.comparison {
font-size: 40px;
margin: 20px 0;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Font Verification Test</h1>
<p class="test">This should be in Zen Dots: Devfest 2026</p>
<p class="comparison">This is Arial (for comparison): Devfest 2026</p>
<p>If the fonts look different, Zen Dots is working correctly!</p>
</body>
</html>