-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (164 loc) · 6.67 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
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
<!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>Pranava Pai N || Simple Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="https://cdn-icons-png.flaticon.com/128/4573/4573998.png">
<nav>
<div class="logo"><a target="_blank" href="https://github.com/Pranava-Pai-N">Pranava Pai N</a></div>
<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>
</nav>
<header>
<h1 class="textful">Hello, I'm Pranava Pai N</h1>
<p id="typingEffect" class="textfull"></p><br></br>
<a target="_blank" href="https://in.linkedin.com/in/pranav-pai-n-563106292" class="btn">Let's Connect</a>
</header>
<section id="about">
<h2>About Me</h2>
<p>
I am a 2nd-year engineering student at Sahyadri College of Engineering and Management. I have a deep interest in web development, open-source projects, and learning new technologies. I’m passionate about solving problems and constantly improving my skills.
</p>
</section>
<section id="skills">
<h2>Tech Stack</h2>
<div class="skills-container">
<div class="skill">
<h3>Frontend</h3>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Tailwind CSS</li>
</ul>
</div>
<div class="skill">
<h3>Backend</h3>
<ul>
<li>Node.js</li>
<li>MySQL</li>
<li>SQLite</li>
</ul>
</div>
<div class="skill">
<h3>Tools & Platforms</h3>
<ul>
<li>Git</li>
<li><a target="blank" href="https://github.com/Pranava-Pai-N">GitHub</a></li>
<li><a target="blank" href ="https://www.hackerrank.com/profile/pranavpai0309">HackerRank</a></li>
<li><a target="blank" href ="https://leetcode.com/u/Pranav_pai/">LeetCode</a></li>
</ul>
</div>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project">
<h3>Project 1 : <span class="textfull">Portfolio Website</span></h3>
<p>Designed and developed a personal portfolio website using HTML and CSS to serve as a platform to showcase my skills and projects.</p><br>
<a href="index.html" class="btn">View Project</a>
</div>
<div class="project">
<h3>Project 2 : <span class="textfull">Global Digital Bank</span></h3>
<p>It is a user-friendly banking application built using Python.</p><br>
<a href="https://github.com/Pranava-Pai-N/Global_Digital_Bank_Python" class="btn" target="_blank">View Project</a>
</div>
<div class="project">
<h3>Project 3 : <span class="textfull">Simple HTML,CSS Projects</span></h3>
<p>Simple Projects like Navbar,Payment Cards,House Renting Page done using HTML and CSS.</p><br>
<a href="https://github.com/Pranava-Pai-N/My-HTML-Projects" class="btn" target="_blank">View Project</a>
</div>
</section>
<section id="contact">
<h2 class="textful">Contact Me</h2>
<form action="https://formspree.io/f/xlddzwbr" class="fs-form" target="_top" method="POST">
<div class="fs-field">
<label class="fs-label" for="name">Your Name</label>
<input class="fs-input" id="name" name="name" required />
</div>
<div class="fs-field">
<label class="fs-label" for="email">Email</label>
<input class="fs-input" id="email" name="email" required />
<p class="fs-description">
Helps me to reply at the earliest
</p>
</div>
<div class="fs-field">
<label class="fs-label" for="message">Your Message/Feedback</label>
<textarea class="fs-textarea" id="message" name="message" required></textarea>
<p class="fs-description">If you want any changes, just reach out to me.</p>
</div>
<div class="fs-button-group">
<button class="fs-button" type="submit">Submit</button>
</div>
</form>
</section>
<script>
const textArray = [
"Tech Enthusiast",
"Programmer",
"Aspiring Web Developer",
"Cyclist",
"Professional Skater",
"Student"
];
let textIndex = 0;
let charIndex = 0;
let currentText = '';
let typingElement = document.getElementById('typingEffect');
function typeWriter() {
if (charIndex < textArray[textIndex].length) {
currentText += textArray[textIndex].charAt(charIndex);
typingElement.innerHTML = currentText + '|';
charIndex++;
setTimeout(typeWriter, 100);
} else {
setTimeout(deleteWriter, 1000);
}
}
function deleteWriter() {
if (charIndex > 0) {
currentText = currentText.substring(0, currentText.length - 1);
typingElement.innerHTML = currentText + '|';
charIndex--;
setTimeout(deleteWriter, 50);
} else {
textIndex = (textIndex + 1) % textArray.length;
setTimeout(typeWriter, 500);
}
}
window.onload = function() {
setTimeout(typeWriter, 1000);
};
function updateClock() {
const clockElement = document.getElementById('neonClock');
const now = new Date();
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const seconds = String(now.getSeconds()).padStart(2, '0');
clockElement.textContent = `${hours}:${minutes}:${seconds}`;
const randomColor = getRandomColor();
clockElement.style.color = randomColor;
clockElement.style.textShadow = `
0 0 10px ${randomColor},
0 0 20px ${randomColor},
0 0 30px ${randomColor},
0 0 40px ${randomColor}`;
}
setInterval(updateClock, 100);
updateClock();
</script>
<footer>
<p>© 2025 Pranav Pai N. All Rights Reserved.</p>
<p>Updated Few Minutes Ago....</p><br>
<p>Work In Progress. Thank you for Visiting.</p>
<div id="neonClock"></div>
</footer>
</body>
</html>