-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfont-demo.html
More file actions
112 lines (99 loc) · 3.03 KB
/
font-demo.html
File metadata and controls
112 lines (99 loc) · 3.03 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Schriftarten Vergleich - KodiniTools</title>
<style>
@font-face {
font-family: 'Supreme';
src: url('/fonts/Supreme-Regular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, #f9f2d5 0%, #f8e1a9 100%);
min-height: 100vh;
padding: 2rem;
font-family: 'Supreme', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}
h1 {
text-align: center;
margin-bottom: 2rem;
color: #003971;
}
.font-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.font-card {
background: white;
border-radius: 16px;
padding: 1.5rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border: 1px solid rgba(0,0,0,0.06);
}
.font-name {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #4f6f8e;
margin-bottom: 1rem;
}
.font-demo h2 {
font-size: 1.75rem;
margin-bottom: 0.5rem;
color: #003971;
}
.font-demo h3 {
font-size: 1.1rem;
margin-bottom: 0.75rem;
color: #014f99;
font-weight: 600;
}
.font-demo p {
font-size: 0.95rem;
line-height: 1.6;
color: #014f99;
margin-bottom: 1rem;
}
.font-demo .small {
font-size: 0.8rem;
color: #4f6f8e;
}
.recommendation {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 0.25rem 0.6rem;
border-radius: 4px;
font-size: 0.65rem;
margin-left: 0.5rem;
vertical-align: middle;
}
</style>
</head>
<body>
<h1>Schriftarten Vergleich</h1>
<div class="font-grid">
<!-- Supreme -->
<div class="font-card">
<div class="font-name">Supreme <span class="recommendation">Aktiv</span></div>
<div class="font-demo">
<h2>KodiniTools</h2>
<h3>Kostenlose Audio & Bild Tools</h3>
<p>Professionelle Audio- und Bildbearbeitungstools kostenlos im Browser. MP3 Konverter, Audio Equalizer, Bildkonverter und mehr.</p>
<p class="small">Keine Installation erforderlich - direkt im Browser nutzen.</p>
</div>
</div>
</div>
</body>
</html>