-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogo_preview.html
More file actions
143 lines (126 loc) · 5.1 KB
/
Copy pathlogo_preview.html
File metadata and controls
143 lines (126 loc) · 5.1 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TeamUp Premium Typography</title>
<style>
body {
margin: 0;
padding: 40px;
background-color: #0A0A0A;
color: white;
font-family: 'Inter', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
h1 {
color: #FFD700;
font-size: 3rem;
margin-bottom: 10px;
}
.subtitle {
color: #888;
margin-bottom: 60px;
font-size: 1.2rem;
text-align: center;
max-width: 600px;
}
.grid {
display: grid;
grid-template-columns: 1fr;
gap: 60px;
max-width: 800px;
width: 100%;
}
.card {
background: #111;
border: 1px solid #333;
border-radius: 20px;
padding: 60px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
cursor: pointer;
min-height: 250px;
}
.card:hover {
border-color: #FFD700;
transform: scale(1.02);
box-shadow: 0 20px 50px rgba(255, 215, 0, 0.1);
}
.label {
margin-top: 30px;
color: #666;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 4px;
}
.desc {
margin-top: 10px;
color: #444;
font-size: 0.8rem;
}
</style>
</head>
<body>
<h1>Premium Typography</h1>
<div class="subtitle">Applying high-end design principles directly to the text.</div>
<div class="grid">
<!-- Fusion Type -->
<div class="card">
<svg width="350" height="120" viewBox="0 0 350 120" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="fusionGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stopColor="#FFFFFF" />
<stop offset="50%" stopColor="#FFD700" />
<stop offset="100%" stopColor="#FFFFFF" />
</linearGradient>
</defs>
<text x="50" y="80" font-family="sans-serif" font-size="80" font-weight="900" fill="#FFFFFF"
letter-spacing="-4">TEAM</text>
<path d="M 260 50 Q 280 50 280 80" stroke="#FFD700" stroke-width="8" fill="none" />
<text x="280" y="80" font-family="sans-serif" font-size="80" font-weight="900" fill="#FFD700"
letter-spacing="-4">UP</text>
<rect x="50" y="95" width="200" height="4" fill="url(#fusionGrad)" rx="2" />
</svg>
<div class="label">1. Fusion Type</div>
<div class="desc">Fluid connection between words, representing seamless workflow.</div>
</div>
<!-- Negative Space -->
<div class="card">
<svg width="400" height="120" viewBox="0 0 400 120" xmlns="http://www.w3.org/2000/svg">
<text x="20" y="100" font-family="sans-serif" font-size="100" font-weight="900" fill="#FFD700"
letter-spacing="-5">TEAM</text>
<g transform="translate(300, 0)">
<rect x="0" y="20" width="80" height="80" fill="#FFFFFF" rx="10" />
<path d="M 40 30 L 20 60 H 30 V 90 H 50 V 60 H 60 L 40 30 Z" fill="#0A0A0A" />
</g>
</svg>
<div class="label">2. Negative Space</div>
<div class="desc">Bold text with a hidden 'Up' arrow utilizing negative space.</div>
</div>
<!-- Structural -->
<div class="card">
<svg width="320" height="120" viewBox="0 0 320 120" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="20" width="60" height="15" fill="#4A4A4A" />
<rect x="32" y="20" width="15" height="80" fill="#FFFFFF" />
<rect x="80" y="20" width="15" height="80" fill="#FFFFFF" />
<rect x="80" y="20" width="50" height="15" fill="#4A4A4A" />
<rect x="80" y="52" width="40" height="15" fill="#4A4A4A" />
<rect x="80" y="85" width="50" height="15" fill="#4A4A4A" />
<path d="M 160 20 L 135 100 H 155 L 160 80 L 165 100 H 185 Z" fill="#FFD700" />
<path d="M 195 100 V 20 L 215 60 L 235 20 V 100 H 225 V 40 L 215 70 L 205 40 V 100 Z" fill="#FFFFFF" />
<text x="250" y="100" font-family="monospace" font-size="80" font-weight="bold" fill="#FFD700"
letter-spacing="-2">UP</text>
</svg>
<div class="label">3. Structural</div>
<div class="desc">Letters built from geometric blocks, symbolizing stability and engineering.</div>
</div>
</div>
</body>
</html>