-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
320 lines (280 loc) · 7.4 KB
/
index.html
File metadata and controls
320 lines (280 loc) · 7.4 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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css" rel="stylesheet" type="text/css">
<title>آکادمی متالکد</title>
<style>
* {
font-family: Vazirmatn, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-track {
background: #1e1e2f;
}
body::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #6a11cb, #2575fc);
border-radius: 10px;
border: 3px solid #1e1e2f;
}
body::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #2575fc, #6a11cb);
}
body {
font-family: 'Poppins', sans-serif;
background-color: #1e1e2f;
color: #fff;
line-height: 1.6;
overflow-x: hidden;
}
header {
background: linear-gradient(135deg, #6a11cb, #2575fc);
padding: 20px 0;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}
header::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
animation: rotate 10s linear infinite;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
header img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 3px solid #fff;
margin-bottom: 10px;
position: relative;
z-index: 1;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
position: relative;
z-index: 1;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-size: 1.1rem;
transition: color 0.3s ease, transform 0.3s ease;
position: relative;
z-index: 1;
}
nav a:hover {
color: #ffdd57;
transform: translateY(-3px);
}
article {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
section {
margin-bottom: 40px;
padding: 20px;
background: rgba(44, 44, 68, 0.8);
border-radius: 15px;
backdrop-filter: blur(10px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
section h3 {
font-size: 2rem;
margin-bottom: 20px;
color: #ffdd57;
text-align: center;
}
section p {
font-size: 1.1rem;
line-height: 1.8;
color: #ddd;
}
section div {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section div:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
section div h4 {
font-size: 1.5rem;
margin-bottom: 10px;
color: #ffdd57;
}
section div p {
font-size: 1rem;
color: #ccc;
}
/* بخش مدرسان */
section#modaresan {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
section#modaresan div {
flex: 1 1 calc(33.333% - 40px);
text-align: center;
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section#modaresan div:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
section#modaresan img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 10px;
border: 3px solid #ffdd57;
}
section#modaresan h4 {
font-size: 1.3rem;
margin-bottom: 5px;
}
section#modaresan p {
font-size: 1rem;
color: #ccc;
}
section#modaresan button {
background: #ffdd57;
color: #1e1e2f;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease, transform 0.3s ease;
}
section#modaresan button:hover {
background: #ffcc00;
transform: translateY(-3px);
}
footer {
background: #2c2c44;
padding: 20px 0;
text-align: center;
margin-top: 40px;
}
footer a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-size: 1.1rem;
transition: color 0.3s ease, transform 0.3s ease;
}
footer a:hover {
color: #ffdd57;
transform: translateY(-3px);
}
@media (max-width: 768px) {
header h1 {
font-size: 2rem;
}
nav a {
font-size: 1rem;
}
section#modaresan div {
flex: 1 1 calc(50% - 20px);
}
}
@media (max-width: 480px) {
header h1 {
font-size: 1.5rem;
}
nav a {
font-size: 0.9rem;
}
section#modaresan div {
flex: 1 1 100%;
}
}
</style>
</head>
<body>
<header>
<img src="metal-logo.png" alt="matal-pic">
<h1>آکادمی متالکد</h1>
<nav>
<a href="#">خانه</a>
<a href="#bio">توضیحات</a>
<a href="#doreha">دوره ها</a>
<a href="#modaresan">مدرسان</a>
<a href="#ertebat">ارتباط با ما</a>
</nav>
</header>
<article>
<section id="bio" style="text-align: center;">
<h3>توضیحات</h3>
<p>سلام متالکدیا!<br>
اینجا وبسایت متالکده که توش محتوای جذابی میزاریم...<br>
با ما همراه بشید و برنامهنویسی رو به سبک <b>متالکد</b> یاد بگیرید!
</p>
</section>
<section id="doreha">
<h3>دوره های ما</h3>
<div>
<h4>دوره پایتون مقدماتی</h4>
<p>در این دوره شما با مبانی و رشته کد های پایه ای پایتون اشنا میشوید (در حال ضبط)</p>
</div>
<div>
<h4>دوره اموزش اچ تی ام ال</h4>
<p>شما در این دوره با تگ های کاربردی زبان برنامه نویسی اچ تی ام ال اشنا میشوید و میتوانید سایت خود را طراحی کنید (ضبط شده و در حال ادیت)</p>
</div>
<div>
<h4>دوره ای پی ای نویسی</h4>
<p>شما با یادگیری این دوره میتوانید کد های تایین شده را برای استفاده های مختلف مانند اب و هوا و... یاد بگیرید (در حال ضبط)</p>
</div>
</section>
<section id="modaresan">
<div>
<img src="behi.jpeg" alt="omidi">
<h4>بهراد امیدی</h4>
<p>ادمین بخش فرانت اند</p>
<a href="https://www.behradinfo.ir"><button>مراجعه به سایت</button></a>
</div>
<div>
<img src="mpmms.png" alt="mortazavi">
<h4>محمد پارسا مرتضوی</h4>
<p>سر گروه و مدیر آکادمی</p>
<a href="https://mpmms.github.io"><button>مراجعه به سایت</button></a>
</div>
</section>
</article>
<footer id="ertebat">
<a href="https://www.ble.ir/metalcode">کانال بله</a>
<a href="https://www.ble.ir/metaladmin">ارتباط با پشتیبانی</a>
</footer>
</body>
</html>