-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
389 lines (332 loc) · 14 KB
/
index.html
File metadata and controls
389 lines (332 loc) · 14 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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
<link rel="icon" href="Images/icon.JPG" type="jpg/gif">
<style>
body {
background-color: rgb(5, 19, 66);
background-size: cover;
background: #0e0e0e;
color: #ddd;
font-family: "Courier New", monospace;
}
a {
color: #00ff99;
}
@keyframes glitch {
0% { text-shadow: 2px 2px red; }
50% { text-shadow: -2px -2px blue; }
100% { text-shadow: 2px 2px red; }
}
.glitch-text {
animation: glitch 1s infinite alternate;
color: #00ff99;
font-size: 2rem;
font-weight: bold;
}
.hero-section {
height: 100vh;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.card {
background: #f4e7c5;
border-radius: 10px;
transition: transform 0.3s;
}
.card:hover {
transform: scale(1.05) translateY(-5px);
box-shadow: 0px 10px 20px rgba(0, 255, 153, 0.3);
}
.form-control {
border: 2px solid #5a3825;
background: #f9f3e6;
}
form {
margin: auto;
max-width: 500px;
}
footer {
font-size: 14px;
}
.btn{
display: inline-block;
padding: 12px 24px;
background-color: #00ff99;
border-radius: 25px;
font-size: 1.6rem;
color: white;
letter-spacing: 0.3rem;
font-weight: 600;
border: 2px solid white;
transition: 0.3s ease;
cursor: pointer;
}
.btn:hover{
background-color: rgb(73, 197, 69);
}
.typing-text {
font-size: 1.5rem;
font-weight: bold;
display: inline-block;
border-right: 3px solid white;
padding-right: 5px;
white-space: nowrap;
overflow: hidden;
animation: blink 0.6s infinite;
}
@keyframes blink {
50% { border-right-color: transparent; }
}
.project-card .btn {
font-size: 14px;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.3s ease;
}
.project-card .btn:hover {
background-color: #0056b3;
transform: scale(1.05);
}
.project-card {
color: #555;
transition: color 0.3s ease-in-out;
}
.project-card:hover {
color: #00ff99;
text-shadow: 0px 0px 5px #00ff99;
}
.card .btn {
font-size: 14px;
padding: 6px 14px;
border-radius: 6px;
transition: all 0.3s ease-in-out;
}
.card .btn:hover {
background-color: whitesmoke !important;
color: black;
transform: scale(1.05);
}
.hero-image {
width: 250px;
height: 250px;
object-fit: cover;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
border: 3px solid #00ff99;
}
.social-icons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 10px;
}
.social-icons a {
font-size: 30px;
color: #00ff99;
text-decoration: none;
}
.social-icons a:hover {
transform: scale(1.05);
}
#name{
color: #00ff99;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top shadow">
<div class="container">
<a class="navbar-brand fw-bold" href="#">Daniel Davidson</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<section id="home" class="hero-section d-flex align-items-center justify-content-center">
<div class="container text-center text-md-start">
<div class="row align-items-center">
<!-- Left Side: Text -->
<div class="col-md-6" data-aos="fade-right">
<h2 class="display-4 fw-bold">Hi, I'm <span id="name">Daniel Davidson</span></h2>
<p class="lead typing-text"><span>A passionate </span></p>
<br><br>
<a class="btn" type="submit" href="#contact">Hire Me</a>
</div>
<!-- Right Side: Image -->
<div class="col-md-6 text-center" data-aos="fade-left">
<img src="Images/profile (2).JPG" alt="Daniel Davidson" class="img-fluid rounded-circle hero-image">
</div>
</div>
</div>
</section>
<section id="about" class="py-5 bg-light text-center">
<div class="container">
<h2 class="fw-bold">About Me</h2>
<p class="lead text-muted">
I am a <b>front-end developer</b> from Kerala, skilled in <b>HTML, CSS, JavaScript, and Bootstrap.</b>
I also have knowledge of <b>Node.js, Python, and other programming languages.</b>
<br><br>
I graduated in 2024 with a <b>BCA degree</b> and currently do freelance work as a <b>front-end developer, programmer, and web developer.</b>
<br><br>
I am also learning <b>Full-Stack Development.</b>
Feel free to go through my website, and if you're interested, contact me via my socials or the form below.
<br><br>
<b>Thank you for visiting!</b>
</p>
</div>
</section>
<section id="projects" class="py-5 text-center">
<div class="container">
<h2 class="fw-bold mb-4 text-white">Projects</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title">Calculator App</h5>
<p class="card-text text-muted">A simple and responsive calculator built using JavaScript.</p>
<a href="https://github.com/Travelling-Human/Front-End-Projects/tree/main/Calulater" class="btn btn-primary btn-sm rounded-pill">Take a look here</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title">Responsive Web Login</h5>
<p class="card-text text-muted">A simple Login page made using html, css alone.</p>
<a href="https://github.com/Travelling-Human/Front-End-Projects/tree/main/Responsive%20Login%20Page" class="btn btn-primary btn-sm rounded-pill">Take a look here</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title">A simple Registration Form</h5>
<p class="card-text text-muted">A Registration page for Creating Acccounts. Made using html and css only.</p>
<a href="https://github.com/Travelling-Human/Front-End-Projects/tree/main/Registration%20Form" class="btn btn-primary btn-sm rounded-pill">Take a look here</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title">Decimal-to-Binary converter</h5>
<p class="card-text text-muted">A webpage made to convert decimal value to binary values. made using html, css, and JavaScript</p>
<a href="https://github.com/Travelling-Human/Front-End-Projects/tree/main/Decimal-to-Binary%20converter" class="btn btn-primary btn-sm rounded-pill">Take a look here</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title">Password Generator</h5>
<p class="card-text text-muted">A web page made to generate password upto 20 characters in length with alpha-numeral and special characters. made using html, cs, and JavaScript</p>
<a href="https://github.com/Travelling-Human/Front-End-Projects/tree/main/Password%20Generator" class="btn btn-primary btn-sm rounded-pill">Take a look here</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title">Text based RPG Game</h5>
<p class="card-text text-muted">A text based RPG game with diffrent methods to win and an easter egg. made using html, cs, and JavaScript</p>
<a href="https://github.com/Travelling-Human/RPG-web-Game" class="btn btn-primary btn-sm rounded-pill">Take a look here</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="py-5 bg-light text-center">
<div class="container">
<h2 class="text-dark">Contact Me</h2>
<p class="text-muted">Feel free to reach out via the form below.</p>
<form action="https://api.web3forms.com/submit" method="POST" class="mt-4 mx-auto" style="max-width: 400px;">
<input type="hidden" name="access_key" value="31ea44fe-db17-4358-98a4-fae2ab6af028">
<input type="text" name="name" class="form-control my-2" placeholder="Your Name" required>
<input type="email" name="email" class="form-control my-2" placeholder="Your Email" required>
<textarea name="message" class="form-control my-2" placeholder="Your Message" required></textarea>
<button type="submit" class="btn btn-primary w-100">Send</button>
</form>
</div>
</section>
<footer class="bg-dark text-white text-center py-3">
© 2025 Your Name. All Rights Reserved.
<div class="social-icons">
<a href="https://github.com/Travelling-Human" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/daniel-davidson-763bb9309/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://instagram.com/@daniel_davidson_Official" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="t.me/@Danaryus_Targarian" target="_blank">
<i class="fa-brands fa-telegram"></i>
</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
const searchInput = document.getElementById('search');
searchInput?.addEventListener('input', function() {
let searchText = searchInput.value.toLowerCase();
let items = document.querySelectorAll('.notice, .announcement, .event, .medal');
items.forEach(item => {
let text = item.textContent.toLowerCase();
item.style.display = text.includes(searchText) ? "block" : "none";
});
});
});
const words = ["A Passionate Front-End Developer", "Learning Programmer", "Newbie Web Developer", "Always a Student"];
let wordIndex = 0;
let charIndex = 0;
let isDeleting = false;
const typingSpeed = 75;
const erasingSpeed = 35;
const delayBetweenWords = 1500;
function typeEffect() {
const typingText = document.querySelector(".typing-text");
const currentWord = words[wordIndex];
if (!isDeleting) {
typingText.textContent = currentWord.slice(0, charIndex++);
} else {
typingText.textContent = currentWord.slice(0, charIndex--);
}
if (!isDeleting && charIndex > currentWord.length) {
setTimeout(() => isDeleting = true, delayBetweenWords);
} else if (isDeleting && charIndex === 0) {
isDeleting = false;
wordIndex = (wordIndex + 1) % words.length;
}
setTimeout(typeEffect, isDeleting ? erasingSpeed : typingSpeed);
}
document.addEventListener("DOMContentLoaded", () => {
setTimeout(typeEffect, 500);
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script>
AOS.init({
duration: 800,
once: true
});
</script>
</body>
</html>