-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (127 loc) · 3.15 KB
/
index.html
File metadata and controls
131 lines (127 loc) · 3.15 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
<!DOCTYPE html>
<html lang="uz">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ILearn Academy – IT Kurslarga Marhamat!</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(120deg, #1f2933, #111827);
color: #ffffff;
}
header {
text-align: center;
padding: 80px 20px 40px;
}
header h1 {
font-size: 3rem;
margin-bottom: 10px;
letter-spacing: 2px;
}
header p {
font-size: 1.1rem;
opacity: 0.85;
}
.container {
max-width: 1100px;
margin: auto;
padding: 40px 20px;
}
.cta {
text-align: center;
margin-bottom: 50px;
}
.cta h2 {
font-size: 2rem;
margin-bottom: 20px;
}
.courses {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-bottom: 60px;
}
.course {
background: #e5e7eb;
color: #111827;
padding: 25px 20px;
border-radius: 12px;
text-align: center;
font-weight: bold;
transition: transform 0.3s, box-shadow 0.3s;
}
.course:hover {
transform: translateY(-6px);
box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
.info {
background: rgba(255,255,255,0.05);
padding: 40px 20px;
border-radius: 16px;
margin-bottom: 50px;
}
.info h3 {
text-align: center;
margin-bottom: 25px;
font-size: 1.8rem;
}
.info ul {
list-style: none;
padding: 0;
max-width: 700px;
margin: auto;
}
.info li {
margin-bottom: 15px;
font-size: 1.05rem;
}
footer {
background: #020617;
padding: 30px 20px;
text-align: center;
font-size: 0.95rem;
}
footer p {
margin: 8px 0;
}
.highlight {
color: #38bdf8;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<h1>ILEARN ACADEMY</h1>
<p>Upgrade your knowledge. Build your future.</p>
</header>
<main class="container">
<section class="cta">
<h2>IT Kurslarga Marhamat</h2>
</section>
<section class="courses">
<div class="course">Kompyuter Savodxonligi</div>
<div class="course">Web Dasturlash</div>
<div class="course">Mobile Dasturlash</div>
<div class="course">Sun’iy Intellekt Asoslari</div>
</section>
<section class="info">
<h3>Kimlar qo‘shila oladi?</h3>
<ul>
<li>✔ Maktab o‘quvchilari</li>
<li>✔ Abituriyentlar</li>
<li>✔ Kasb o‘rganuvchilar</li>
<li>✔ IT kursi uchun shaxsiy kompyuteringiz bo'lishi va ingliz tilini bilish tavsiya qilinadi</li>
</ul>
</section>
</main>
<footer>
<p><span class="highlight">Bog‘lanish uchun:</span></p>
<p>📞 Phone: +998 99 005 66 34</p>
<p>📍 Manzil: Toshkent viloyati, Bekobod tumani, Xos MFY, 38-maktab</p>
<p>© 2026 ILearn Academy</p>
</footer>
</body>
</html>