-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.08 KB
/
index.html
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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NuAlpha</title>
<link href="https://fonts.googleapis.com/css2?family=STIX+Two+Math:wght@700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'STIX Two Math', serif;
color: #000;
background-color: #fff;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.symbol {
display: flex;
align-items: center;
}
.nu {
font-size: 200px;
color: #000;
margin-right: -20px; /* Adjust kerning */
}
.alpha {
font-size: 200px;
color: #000;
}
</style>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text x='10' y='70' font-size='60' font-family='STIX Two Math'>νA</text></svg>">
</head>
<body>
<div class="symbol">
<div class="nu">ν</div> <!-- Lowercase Nu using Unicode value -->
<div class="alpha">A</div> <!-- Capital A for Alpha -->
</div>
</body>
</html>