-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
247 lines (231 loc) · 12.9 KB
/
index.html
File metadata and controls
247 lines (231 loc) · 12.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Its Ethem Miss</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Google+Sans+Code:wght@300;800&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
google: ['"Google Sans Code"', 'sans-serif']
},
colors: {
primary: '#374151',
primaryHover: '#1F2937'
}
}
}
}
</script>
<style>
body { font-family: 'Google Sans Code', sans-serif; font-weight: 300; }
h1, h2, h3, h4 { font-weight: 800; }
.page-section { display: none; }
.page-section.active { display: block; }
.fade-in { animation: fadeIn 0.3s ease-in; }
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.project-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.project-card:hover { transform: translateY(-5px); }
</style>
</head>
<body class="bg-white dark:bg-gray-900 text-gray-900 dark:text-gray-100 min-h-screen flex flex-col transition-colors duration-300 font-google">
<!-- Navigation -->
<nav class="bg-white dark:bg-gray-800 shadow-lg sticky top-0 z-50 transition-colors duration-300">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between items-center py-4">
<div class="flex items-center space-x-3">
<img src="assets/images/logo.png" alt="Logo" class="w-10 h-10 rounded-lg" />
<h1 class="text-xl font-extrabold text-gray-900 dark:text-white">Its Ethem Miss</h1>
</div>
<div class="hidden md:flex space-x-8">
<button onclick="showPage('home')" class="nav-link font-light text-gray-700 dark:text-gray-300 bg-transparent hover:bg-primary hover:text-white transition-colors rounded px-4 py-2">Home</button>
<button onclick="showPage('about')" class="nav-link font-light text-gray-700 dark:text-gray-300 bg-transparent hover:bg-primary hover:text-white transition-colors rounded px-4 py-2">About</button>
<button onclick="showPage('projects')" class="nav-link font-light text-gray-700 dark:text-gray-300 bg-transparent hover:bg-primary hover:text-white transition-colors rounded px-4 py-2">Projects</button>
<button onclick="showPage('team')" class="nav-link font-light text-gray-700 dark:text-gray-300 bg-transparent hover:bg-primary hover:text-white transition-colors rounded px-4 py-2">Team</button>
<a href="https://github.com/itsethemmiss" target="_blank" class="flex items-center bg-gray-200 text-gray px-4 py-2 rounded hover:bg-primaryHover transition">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5 mr-1">
Github
</a>
</div>
<button id="mobile-menu-btn" class="md:hidden text-gray-700 dark:text-gray-300">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</nav>
<!-- Main Content Wrapper -->
<main class="flex-grow">
<!-- Home -->
<div id="home" class="page-section active">
<section class="py-20 text-center">
<h2 class="text-6xl font-extrabold mb-6">Welcome to Its Ethem Miss</h2>
<p class="text-xl font-light mb-8 max-w-3xl mx-auto">Innovating the future through solutions called its ethem miss</p>
<button onclick="showPage('projects')" class="bg-primary text-white px-8 py-3 rounded font-medium hover:bg-primaryHover transition text-lg">
View Our Projects
</button>
</section>
</div>
<!-- About -->
<div id="about" class="page-section">
<section class="py-16">
<div class="max-w-4xl mx-auto px-4">
<h2 class="text-4xl font-extrabold text-center mb-12">About Its Ethem Miss</h2>
<p class="text-lg font-light mb-6">Its Ethem Miss is a forward-thinking organization dedicated to creating innovative solutions that are its ethe miss-related. This started out when all my teachers got my name wrong, so I kept on saying its ethem miss or its ethem sir. This then became a funny joke, then a full dev team.</p>
</div>
</section>
</div>
<!-- Projects -->
<div id="projects" class="page-section">
<section class="py-16">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-4xl font-extrabold text-center mb-12">Our Projects</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card bg-white dark:bg-gray-800 rounded-lg overflow-hidden border border-gray-200 dark:border-gray-700 hover:shadow-md">
<img src="assets/images/project.png" alt="Project" class="w-full h-48 object-cover border-b border-gray-200 dark:border-gray-700">
<div class="p-6">
<h3 class="text-xl font-extrabold mb-3">Its ethem miss</h3>
<p class="font-light text-gray-600 dark:text-gray-300 mb-4">Made in HTML. Created by Ethem Beldagli and James Davies.</p>
<div class="font-light text-gray-500">Languages: HTML</div>
<!-- Buttons -->
<div class="flex gap-4 mt-4">
<a href="https://github.com/itsethemmiss/site" class="flex items-center justify-center gap-2 px-4 py-2 bg-primary text-white rounded hover:bg-primaryHover transition">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5">
Github
</a>
<a href="https://itsethemmiss.github.io/site" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-500 transition">
Demo
</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card bg-white dark:bg-gray-800 rounded-lg overflow-hidden border border-gray-200 dark:border-gray-700 hover:shadow-md">
<img src="assets/images/project2.png" alt="Project" class="w-full h-48 object-cover border-b border-gray-200 dark:border-gray-700">
<div class="p-6">
<h3 class="text-xl font-extrabold mb-3">Its ethem miss (terminal editions)</h3>
<p class="font-light text-gray-600 dark:text-gray-300 mb-4">Made in Python, Java, C, C++, JS, and Bash. Created by Ethem Beldagli, James Davies, and Aarav Jajoo.</p>
<div class="font-light text-gray-500">Languages: Python, Java, C, C++, JS, Bash</div>
<!-- Buttons -->
<div class="flex gap-4 mt-4">
<a href="https://github.com/itsethemmiss/editions" class="flex items-center justify-center gap-2 px-4 py-2 bg-primary text-white rounded hover:bg-primaryHover transition">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5">
Github
</a>
<a href="https://itsethemmiss.github.io/terminal-editions/" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-500 transition">
Demo
</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card bg-white dark:bg-gray-800 rounded-lg overflow-hidden border border-gray-200 dark:border-gray-700 hover:shadow-md">
<img src="assets/images/project3.png" alt="Project" class="w-full h-48 object-cover border-b border-gray-200 dark:border-gray-700">
<div class="p-6">
<h3 class="text-xl font-extrabold mb-3">Its ethem miss (this website)</h3>
<p class="font-light text-gray-600 dark:text-gray-300 mb-4">Made in HTML. Created by Ethem Beldagli.</p>
<div class="font-light text-gray-500">Languages: HTML</div>
<!-- Buttons -->
<div class="flex gap-4 mt-4">
<a href="https://github.com/itsethemmiss/itsethemmiss.github.io" class="flex items-center justify-center gap-2 px-4 py-2 bg-primary text-white rounded hover:bg-primaryHover transition">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5">
Github
</a>
<a href="https://itsethemmiss.github.io/" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-500 transition">
Demo
</a>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="project-card bg-white dark:bg-gray-800 rounded-lg overflow-hidden border border-gray-200 dark:border-gray-700 hover:shadow-md">
<img src="assets/images/project4.png" alt="Doner Kebab HTML" class="w-full h-48 object-cover border-b border-gray-200 dark:border-gray-700">
<div class="p-6">
<h3 class="text-xl font-extrabold mb-3">Doner Kebab HTML</h3>
<p class="font-light text-gray-600 dark:text-gray-300 mb-4">Made in HTML and JS. Created by Ethem Beldagli.</p>
<div class="font-light text-gray-500">Languages: HTML, JS</div>
<!-- Buttons -->
<div class="flex gap-4 mt-4">
<a href="https://github.com/itsethemmiss/donerkebabhtml" class="flex items-center justify-center gap-2 px-4 py-2 bg-primary text-white rounded hover:bg-primaryHover transition">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5">
Github
</a>
<a href="https://itsethemmiss.github.io/donerkebabhtml/" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-500 transition">
Demo
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Team -->
<div id="team" class="page-section">
<section class="py-16">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-4xl font-extrabold text-center mb-12">Our Team</h2>
<div class="grid md:grid-cols-3 gap-10 text-center">
<!-- Ethem -->
<div>
<img src="assets/images/1.png" class="w-32 h-32 mx-auto rounded-full mb-4 border" alt="Ethem">
<h3 class="text-2xl font-extrabold">Ethem Beldagli</h3>
<div class="flex justify-center space-x-3 mt-3">
<a href="https://github.com/ethembeldagli" target="_blank" class="flex items-center text-gray-600 hover:text-primary">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5 mr-1">
ethembeldagli
</a>
<a href="https://github.com/ethembeldagli2" target="_blank" class="flex items-center text-gray-600 hover:text-primary">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5 mr-1">
ethembeldagli2
</a>
</div>
</div>
<!-- James -->
<div>
<img src="assets/images/2.png" class="w-32 h-32 mx-auto rounded-full mb-4 border" alt="James">
<h3 class="text-2xl font-extrabold">James Davies</h3>
<a href="https://github.com/7aimez" target="_blank" class="flex justify-center items-center mt-3 text-gray-600 hover:text-primary">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5 mr-1">
7aimez
</a>
</div>
<!-- Aarav -->
<div>
<img src="assets/images/3.png" class="w-32 h-32 mx-auto rounded-full mb-4 border" alt="Aarav">
<h3 class="text-2xl font-extrabold">Aarav Jajoo</h3>
<a href="https://github.com/aaravgamin26" target="_blank" class="flex justify-center items-center mt-3 text-gray-600 hover:text-primary">
<img src="assets/images/github.svg" alt="GitHub" class="w-5 h-5 mr-1">
aaravgamin26
</a>
</div>
</div>
</div>
</section>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white text-center py-6">
<p>© 2025 Its Ethem Miss. All rights reserved.</p>
</footer>
<script>
function showPage(id) {
document.querySelectorAll('.page-section').forEach(p => p.classList.remove('active'));
document.getElementById(id).classList.add('active', 'fade-in');
window.scrollTo({ top: 0, behavior: 'smooth' });
}
document.getElementById('mobile-menu-btn').addEventListener('click', () => {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
</script>
</body>
</html>