forked from Sbiswas001/Student-Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gyanajyotimishra.html
126 lines (113 loc) · 4.32 KB
/
gyanajyotimishra.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gyanajyoti Mishra - Portfolio</title>
<link rel="stylesheet" href="assets/css/gyanajyotimishra.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<h1>Gyanajyoti Mishra</h1>
<nav>
<ul>
<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">🌙</button>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="hero">
<div class="container">
<h2 class="hero-title">Hi, I'm Gyanajyoti</h2>
<p>Competitive Programmer | Web Developer | Tech Enthusiast</p>
<a href="#projects" class="btn">View My Work</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<div class="container">
<h2>About Me</h2>
<p>I am a passionate software developer and competitive programmer currently pursuing B.Tech in Pharmaceutical Engineering at IIT-BHU. I enjoy solving complex problems and building innovative web applications.</p>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section">
<div class="container">
<h2>Skills</h2>
<div class="skill-container">
<div class="skill">C++ </div>
<div class="skill">Web Development</div>
<div class="skill">Node.js & Express.js</div>
<div class="skill">Nextjs</div>
<div class="skill">Competitive Programming</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section">
<div class="container">
<h2>Projects</h2>
<div class="project-grid">
<div class="project-card" data-modal="project1">
<h3>Chat application</h3>
<p>A chat application using html css js and socketio.</p>
</div>
<div class="project-card" data-modal="project2">
<h3>Ecell Website</h3>
<p>managing a dynamic website for IIT-BHU's E-Cell initiative.</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<div class="container">
<h2>Contact Me</h2>
<p>Reach out to me at:</p>
<ul>
<li>Email: mishrarashmita200@gmail.com</li>
<li>GitHub: <a href="https://github.com/Geeky-Gyan" target="_blank">github.com/Geeky-Gyan</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/gyanajyoti-mishra-a3844526b" target="_blank">linkedin.com/in/gyanajyoti-mishra-a3844526b</a></li>
</ul>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2024 Gyanajyoti Mishra. All Rights Reserved.</p>
</div>
</footer>
<!-- Modals for Project Details -->
<div id="project1" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Campus Ambassador Dashboard</h2>
<p>Detailed information about the project...</p>
</div>
</div>
<div id="project2" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Ecell Website</h2>
<p>Detailed information about the project...</p>
</div>
</div>
<div id="project3" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Competitive Programming Snippets</h2>
<p>Detailed information about the project...</p>
</div>
</div>
<script src="assets/js/gyanajyotimishra.js"></script>
</body>
</html>