-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
284 lines (245 loc) · 5.49 KB
/
index.html
File metadata and controls
284 lines (245 loc) · 5.49 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OFS - IT Solution & Servis Elektronik Gratis</title>
<style>
:root {
--bg: #050812;
--card: rgba(255,255,255,.04);
--accent: #6bb6ff;
--accent2: #7cffd4;
--text: #eaf0ff;
--muted: #9aa3c7;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}
body {
background: var(--bg);
color: var(--text);
}
/*Logo Text*/
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.brand-text {
font-size: 1rem;
font-weight: 600;
color: var(--text);
white-space: nowrap;
}
/* Make it smaller on mobile */
@media (max-width: 480px) {
.brand-text {
font-size: 0.85rem;
}
}
/* NAVBAR */
.topbar {
position: fixed;
width: 100%;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 5vw;
background: rgba(0,0,0,.8);
backdrop-filter: blur(10px);
z-index: 999;
}
.logo img {
height: 32px;
}
/* MENU */
.menu {
display: flex;
gap: 24px;
}
.menu a {
color: var(--muted);
text-decoration: none;
font-size: .95rem;
}
.menu a:hover {
color: var(--text);
}
/* MOBILE MENU */
.hamburger {
display: none;
font-size: 1.5rem;
cursor: pointer;
}
.mobile-menu {
position: fixed;
top: 64px;
left: 0;
width: 100%;
background: #000;
display: none;
flex-direction: column;
padding: 20px;
}
.mobile-menu a {
padding: 12px 0;
border-bottom: 1px solid rgba(255,255,255,.08);
color: var(--text);
text-decoration: none;
}
/* SECTIONS */
section {
min-height: 100vh;
padding: 100px 6vw;
display: flex;
align-items: center;
}
.hero {
background:
radial-gradient(800px 400px at 20% 20%, rgba(107,182,255,.15), transparent),
radial-gradient(600px 300px at 80% 80%, rgba(124,255,212,.12), transparent);
}
/* TEXT */
h1 {
font-size: clamp(2.2rem, 5vw, 3.8rem);
line-height: 1.2;
max-width: 800px;
}
h1 span {
background: linear-gradient(90deg, var(--accent), var(--accent2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
margin-top: 16px;
max-width: 550px;
color: var(--muted);
font-size: 1.05rem;
}
/* CARDS */
.panel {
background: var(--card);
border: 1px solid rgba(255,255,255,.08);
border-radius: 20px;
padding: 30px;
width: 100%;
}
.features {
margin-top: 24px;
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature {
background: rgba(0,0,0,.3);
padding: 20px;
border-radius: 16px;
transition: .4s;
}
.feature:hover {
transform: translateY(-5px);
}
.feature h3 {
margin-bottom: 6px;
}
/* CENTER SECTION */
.center {
text-align: center;
justify-content: center;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.menu {
display: none;
}
.hamburger {
display: block;
}
}
</style>
</head>
<body>
<!-- NAV -->
<div class="topbar">
<div class="logo">
<img src="logo.png" alt="Logo OFS">
<span class="brand-text">Formly Tristan</span>
</div>
<div class="menu">
<a href="#">Layanan</a>
<a href="#">Instalasi</a>
<a href="#">Bantuan</a>
<a href="#">Kontak</a>
</div>
<div class="hamburger" onclick="toggleMenu()">☰</div>
</div>
<div class="mobile-menu" id="mobileMenu">
<a href="#">Layanan</a>
<a href="#">Instalasi</a>
<a href="#">Bantuan</a>
<a href="#">Kontak</a>
</div>
<!-- HERO -->
<section class="hero">
<div>
<h1>
Instalasi IT Profesional<br>
<span>& Servis Elektronik Gratis</span>
</h1>
<p>
Kami menyediakan jasa instalasi, perbaikan, dan optimasi berbagai perangkat —
dari PC, jaringan, hingga sistem pintar. Cepat, rapi, dan tanpa biaya servis.
</p>
</div>
</section>
<!-- SERVICES -->
<section>
<div class="panel">
<h1>Apa yang Kami Lakukan<br><span>Untuk Semua Perangkat Anda?</span></h1>
<p>
Untuk rumah, sekolah, maupun bisnis — kami membawa instalasi dan perbaikan
dengan presisi dan profesional.
</p>
<div class="features">
<div class="feature">
<h3>Rekomendasi Perangkat IoT untuk Anda</h3>
<p>Setup jaringan, Keamanan, Router/WiFI, dan konfigurasi sistem lengkap.</p>
</div>
<div class="feature">
<h3>Optimasi Perangkat</h3>
<p>Meningkatkan performa perangkat agar lebih cepat dan stabil.</p>
</div>
<div class="feature">
<h3>Servis Gratis</h3>
<p>Kami cek dan perbaiki perangkat elektronik tanpa biaya jasa.</p>
</div>
<div class="feature">
<h3>Semua Jenis Elektronik dan Device</h3>
<p>Dari smartphone, komputer, hingga perangkat IoT dan lainnya. Termasuk perangkat rumah dalam bentuk apapun</p>
</div>
</div>
</div>
</section>
<!-- TRUST -->
<section class="center">
<div>
<h1>Layanan Terpercaya<br><span>Yang Bisa Diandalkan</span></h1>
<p>
Transparan, jujur, dan informatif — tanpa biaya,
tanpa upgrade yang tidak perlu.
</p>
</div>
</section>
<script>
function toggleMenu() {
const menu = document.getElementById("mobileMenu");
menu.style.display = menu.style.display === "flex" ? "none" : "flex";
}
</script>
</body>
</html>