-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (98 loc) · 4.14 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Amit Kumar Raikwar - Tech enthusiast, content creator, and esports entrepreneur">
<title>Amit Kumar Raikwar - Developer Blog</title>
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="CSS/header.css">
<link rel="stylesheet" href="CSS/hero.css">
<link rel="stylesheet" href="CSS/projects.css">
<link rel="stylesheet" href="CSS/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<header class="header">
<div class="nav-container">
<a href="#" class="logo">Amit Kumar Raikwar</a>
<nav>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<button class="theme-toggle" aria-label="Toggle theme">
<i class="fas fa-sun"></i>
</button>
<button class="mobile-menu-btn" aria-label="Toggle menu">
<i class="fas fa-bars"></i>
</button>
</div>
</header>
<section class="hero" id="about">
<div class="profile-container">
<img src="images/amit-profile.jpg" alt="Amit Kumar Raikwar" class="profile-image">
<div class="hero-content">
<h1>Amit Kumar Raikwar</h1>
<p class="subtitle">Tech Enthusiast | Content Creator | Esports Entrepreneur</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/amitkumarraikwar/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/amitkumarraikwar" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github"></i>
</a>
<a href="https://youtube.com/pkislive" target="_blank" rel="noopener noreferrer">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</section>
<section class="projects" id="projects">
<div class="container">
<h2>Featured Projects</h2>
<div class="project-grid"></div>
</div>
</section>
<section class="blog" id="blog">
<div class="container">
<h2>Latest Posts</h2>
<div class="blog-grid"></div>
</div>
</section>
<footer class="footer" id="contact">
<div class="footer-content">
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#blog">Blog</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect</h3>
<ul>
<li><a href="https://www.linkedin.com/in/amitkumarraikwar/" target="_blank" rel="noopener noreferrer">LinkedIn</a></li>
<li><a href="https://orcid.org/my-orcid?orcid=0009-0003-4142-8871" target="_blank" rel="noopener noreferrer">ORCID</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Newsletter</h3>
<form id="newsletter-form" class="newsletter-form">
<input type="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form>
</div>
</div>
<div class="footer-bottom">
<p>© <span id="current-year"></span> Amit Kumar Raikwar. All rights reserved.</p>
</div>
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>