-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (86 loc) · 2.95 KB
/
index.html
File metadata and controls
98 lines (86 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="site-title">Portfolio</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<button id="theme-toggle" class="theme-toggle">
<i class="fas fa-moon"></i>
</button>
</nav>
</header>
<main>
<section id="home" class="section">
<h1 id="greeting">Welcome, I'm <span id="dev-name"></span></h1>
<p class="typing-text"></p>
<div class="social-links">
<a href="" id="github-link" target="_blank"><i class="fab fa-github"></i></a>
<a href="" id="linkedin-link" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="" id="twitter-link" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
</div>
</section>
<section id="about" class="section">
<h2>About Me</h2>
<p id="about-text">Based in <span id="location"></span></p>
</section>
<section id="skills" class="section">
<h2>Skills</h2>
<div class="skills-container" id="skills-container">
<!-- Skills will be dynamically added here -->
</div>
</section>
<section id="projects" class="section">
<h2>Projects</h2>
<div class="project-filters">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="frontend">Frontend</button>
<button class="filter-btn" data-filter="backend">Backend</button>
<button class="filter-btn" data-filter="fullstack">Full Stack</button>
</div>
<div class="projects-grid">
<!-- Projects will be dynamically added here -->
</div>
</section>
<section id="testimonials" class="section">
<h2>Testimonials</h2>
<div class="testimonials-slider">
<!-- Testimonials will be dynamically added here -->
</div>
</section>
<section id="contact" class="section">
<h2>Get In Touch</h2>
<p>Email me at: <a id="email-link"></a></p>
<form id="contact-form">
<input type="text" id="name" placeholder="Your Name" required>
<input type="email" id="email" placeholder="Your Email" required>
<textarea id="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© <span id="current-year"></span> <span id="footer-name"></span>. All rights reserved.</p>
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script>
(function () {
emailjs.init(siteConfig.contactConfig.emailjsConfig.userId);
})();
</script>