-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
234 lines (209 loc) · 9.06 KB
/
index.html
File metadata and controls
234 lines (209 loc) · 9.06 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
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Software Engineer specialized in data engineering and backend development" />
<meta name="author" content="Eslam Mohamed" />
<meta name="theme-color" content="#000000" />
<!-- OG Tags for Social Sharing -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Tech Crafter - Eslam Mohamed" />
<meta property="og:description" content="Software Engineer specialized in data engineering and backend development" />
<meta property="og:url" content="https://techcrafter.dev" />
<meta property="og:site_name" content="Tech Crafter" />
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Tech Crafter - Eslam Mohamed" />
<meta name="twitter:description" content="Software Engineer specialized in data engineering and backend development" />
<!-- Canonical URL -->
<link rel="canonical" href="https://techcrafter.dev" />
<!-- Favicon -->
<link rel="icon" type="image/webp" href="assets/images/logo.webp" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Montserrat:wght@400;700&display=swap" rel="stylesheet" />
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/style.css" />
<script>
(function () {
try {
var savedTheme = localStorage.getItem("theme");
var systemPrefersDark = window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches;
var activeTheme = savedTheme || (systemPrefersDark ? "dark" : "light");
document.documentElement.setAttribute("data-theme", activeTheme);
} catch (err) {
document.documentElement.setAttribute("data-theme", "dark");
}
})();
</script>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-XXXXXXXXXX");
</script>
<title>Tech Crafter - Eslam Mohamed | Software Engineer</title>
</head>
<body>
<!-- ============================
HEADER & NAVIGATION
============================ -->
<header>
<div class="header-container">
<div class="logo">
<img src="assets/images/logo.webp" alt="Tech Crafter Logo" />
<span>Tech Crafter</span>
</div>
<div class="header-actions">
<button class="theme-toggle" id="theme-toggle" type="button" aria-label="Switch to light theme" title="Toggle theme">
<i class="fas fa-sun" aria-hidden="true"></i>
</button>
<button
class="menu-toggle"
id="menu-toggle"
type="button"
aria-expanded="false"
aria-controls="header-nav"
aria-label="Open navigation"
>
<i class="fas fa-bars" aria-hidden="true"></i>
</button>
</div>
<nav id="header-nav" class="site-nav" aria-label="Primary navigation">
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<button class="nav-backdrop" id="nav-backdrop" type="button" aria-label="Close navigation menu"></button>
</div>
</header>
<!-- ============================
HERO SECTION
============================ -->
<section class="hero" id="top">
<div class="hero-content" data-reveal>
<p class="hero-intro">01. Crafting Modern Software Experiences</p>
<h1 id="hero-title">Hi, I'm Eslam Mohamed</h1>
<p id="hero-tagline"><span id="hero-tagline-text"></span><span class="typing-cursor" aria-hidden="true"></span></p>
<div class="hero-buttons">
<a href="#" class="btn btn-primary" id="cta-primary"></a>
<a href="#" class="btn btn-secondary" id="cta-secondary"></a>
</div>
</div>
<a href="#about" class="scroll-indicator" aria-label="Scroll to About section">
<span>Scroll</span>
<i class="fas fa-chevron-down" aria-hidden="true"></i>
</a>
</section>
<!-- ============================
MAIN CONTENT
============================ -->
<main>
<!-- ====== ABOUT SECTION ====== -->
<section class="about" id="about" data-reveal>
<div class="about-content">
<h2><span class="section-index">02.</span> About Me</h2>
<p id="about-description"></p>
</div>
</section>
<!-- ====== EXPERIENCE SECTION ====== -->
<section class="experience" id="experience" data-reveal>
<h2><span class="section-index">03.</span> Experience</h2>
<div class="experience-list" id="experience-list">
<!-- Populated by JavaScript -->
</div>
</section>
<!-- ====== SKILLS SECTION ====== -->
<section class="skills" id="skills" data-reveal>
<h2><span class="section-index">04.</span> Skills</h2>
<div class="skills-container" id="skills-container">
<!-- Populated by JavaScript -->
</div>
</section>
<!-- ====== PROJECTS SECTION ====== -->
<section class="projects" id="projects" data-reveal>
<div class="projects-intro">
<h2><span class="section-index">05.</span> Check out my work</h2>
<p>Check out some of my personal projects</p>
</div>
<div class="projects-list" id="projects-grid">
<!-- Populated by JavaScript -->
</div>
</section>
<!-- ====== CERTIFICATES SECTION ====== -->
<section class="certificates" id="certificates" data-reveal>
<h2><span class="section-index">06.</span> Courses & Certificates</h2>
<div class="certificates-list" id="certificates-list">
<!-- Populated by JavaScript -->
</div>
</section>
<!-- ====== CONTACT SECTION ====== -->
<section class="contact" id="contact" data-reveal>
<div class="contact-content">
<div class="contact-intro">
<h6>Get in Touch</h6>
<h2><span class="section-index">07.</span> Let's talk?</h2>
<p>Got a partnership idea, or a project you need help with? Shoot me a line and let's talk.</p>
</div>
<!-- Contact Form -->
<form id="contact-form" method="POST" action="https://formspree.io/f/YOUR_FORMSPREE_ID">
<!-- Honeypot for spam protection -->
<input type="text" name="_gotcha" style="display: none" aria-hidden="true" />
<!-- Name Field (Optional) -->
<div class="form-group">
<label for="form-name">Name</label>
<input type="text" id="form-name" name="name" placeholder="Your name" />
</div>
<!-- Email Field (Required) -->
<div class="form-group required">
<label for="form-email">Your email</label>
<input type="email" id="form-email" name="email" placeholder="your@email.com" required />
</div>
<!-- Message Field (Required) -->
<div class="form-group required">
<label for="form-message">Message</label>
<textarea id="form-message" name="message" placeholder="Your message here..." required></textarea>
</div>
<!-- Submit Button -->
<button type="submit" class="form-submit" id="form-submit">Submit</button>
</form>
</div>
</section>
</main>
<!-- ============================
FOOTER
============================ -->
<footer data-reveal>
<div class="footer-content">
<div class="footer-social" id="footer-social">
<!-- Populated by JavaScript -->
</div>
<div class="footer-credit">
<p>© <span id="current-year"></span> Eslam Mohamed. All rights reserved.</p>
</div>
</div>
</footer>
<!-- ============================
SUCCESS/ERROR MESSAGE OVERLAY
============================ -->
<div class="message-overlay" id="message-overlay">
<div class="message-box" id="message-box">
<h3 id="message-title">Success!</h3>
<p id="message-content">Thank you for your message. I will get back to you soon!</p>
<button class="message-close" id="message-close">Close</button>
</div>
</div>
<!-- Main JavaScript Application -->
<script src="js/app.js"></script>
</body>
</html>