-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (175 loc) · 6.5 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
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ajay Rohilla - Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<div class="container header-content">
<div class="header-text">
<h1 class="fade-in">Ajay Rohilla</h1>
<p class="fade-in delay-1">Computer Science Student</p>
<p class="fade-in delay-2">Chandigarh University</p>
<a href="resume.pdf" download class="fade-in delay-3 btn"
>Download Resume</a
>
</div>
<div class="header-image fade-in delay-3">
<img src="a.jpg" alt="Ajay Rohilla" />
</div>
</div>
</header>
<section id="about" class="section-padding">
<div class="container">
<h2 class="slide-in">About Me</h2>
<p class="slide-in delay-1">
Hi, I'm Ajay Rohilla. I have a solid foundation in front-end
development, with expertise in HTML, CSS, and JavaScript. I enjoy
crafting clean and responsive interfaces that adapt seamlessly to
different devices and screen sizes. I am also proficient in using
popular frameworks such as React and Angular to build dynamic and
interactive web applications.
</p>
<p class="slide-in delay-1">
Outside of web development, I am an avid learner and a curious
individual. I'm pursuing my BE-CSE at Chandigarh University, where I'm
gaining a deep understanding of coding subjects. When I'm not coding
or studying, you can find me exploring new technologies, reading tech
blogs, or playing Cricket to unwind.
</p>
</div>
</section>
<section id="qualifications" class="section-padding">
<div class="container">
<h2 class="slide-in">Qualifications</h2>
<div class="education-list slide-in delay-1">
<div class="education-item">
<h3>Bachelor of Engineering in Computer Science</h3>
<span class="toggle-btn">+</span>
<div class="education-info">
<p>Chandigarh University (4th Year)</p>
<p>CGPA: 8.2</p>
<p>Proficient in C++, Java, Python, and JavaScript</p>
</div>
</div>
<div class="education-item">
<h3>Intermediate (12th)</h3>
<span class="toggle-btn">+</span>
<div class="education-info">
<p>Aadharshila Public School</p>
<p>Percentage: 92.5%</p>
<p>Subjects:- Physics, Chemistry and Mathematics</p>
</div>
</div>
<div class="education-item">
<h3>Matriculation (10th)</h3>
<span class="toggle-btn">+</span>
<div class="education-info">
<p>Sarswati Vidya Mandir Senior Secondary School</p>
<p>Percentage: 92.5%</p>
<p>Subjects:- Physics, Chemistry and Mathematics</p>
</div>
</div>
<!-- Add more education levels as needed -->
</div>
</div>
</section>
<section id="skills" class="section-padding">
<div class="container">
<h2 class="slide-in">Skills & Knowledge</h2>
<div class="skills-list slide-in delay-1">
<div class="skill">
<h3>JavaScript</h3>
<div class="progress-bar">
<div class="progress" style="width: 73%"></div>
</div>
</div>
<div class="skill">
<h3>HTML & CSS</h3>
<div class="progress-bar">
<div class="progress" style="width: 90%"></div>
</div>
</div>
<div class="skill">
<h3>React</h3>
<div class="progress-bar">
<div class="progress" style="width: 62%"></div>
</div>
</div>
<div class="skill">
<h3>Data Structures</h3>
<div class="progress-bar">
<div class="progress" style="width: 80%"></div>
</div>
</div>
<div class="skill">
<h3>C/C++</h3>
<div class="progress-bar">
<div class="progress" style="width: 60%"></div>
</div>
</div>
<!-- Add more skills as needed -->
</div>
</div>
</section>
<section id="expertise" class="section-padding">
<div class="container">
<h2 class="slide-in">Expertise</h2>
<div class="expertise-list slide-in delay-1">
<div class="expertise-item">
<h3>Front-End Development</h3>
<p>
Experienced in creating responsive and accessible interfaces using
modern front-end technologies.
</p>
</div>
<div class="expertise-item">
<h3>Web Design</h3>
<p>
Skilled in designing user-friendly web layouts with a focus on
usability and aesthetics.
</p>
</div>
<!-- Add more expertise areas as needed -->
</div>
</div>
</section>
<section id="projects" class="section-padding">
<div class="container">
<h2 class="slide-in">Projects</h2>
<div id="project-list" class="slide-in delay-1">
<div class="project-item">
<a href="https://calculator1705.netlify.app/">
<h3>Calculator App</h3>
<div class="project-info">
<p>
A calculator with advanced mathematical functions and
animations using HTML, CSS, and JavaScript.
</p>
</div>
</a>
</div>
<div class="project-item">
<a href="https://stumpsup.netlify.app/">
<h3>Landing Page</h3>
<div class="project-info">
<p>
A responsive landing page with smooth scrolling, animations,
and a toggle theme switcher.
</p>
</div>
</a>
</div>
<!-- Add more projects as needed -->
</div>
</div>
</section>
<footer>
<p>© 2024 Ajay Rohilla. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>