-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 2 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 2 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
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to My Website!</h1>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<div class="content">
<section id="about">
<h2>About Me</h2>
<p>My name is Abhijeet Parida.<br>
I am studying at the National Institute of Science Education and Research, Bhubaneswar, where I am in my first year of an Integrated Masters degree in Science.<br>
I am interested in Physics, Mathematics, and Computer Science.
I also like playing games, especially with friends. Football is my favourite sport, although I struggle with all the running around. I also indulge in anime/manga occasionally, and read light novels once in a while. <br>
After joining the Software Development Group in NISER, I am invested in learning web and app dev. I also plan on making a good game with my friends. I am also interested in learning about AI and ML, and plan on working on them in the future.<br>
My favourite fruits are watermelon and pineapple, and I love eating noodles as well.
</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p> I plan on working on projects this winter in internships, where I will try to make a GUI interface for some lab equipment. For this I need to learn some matplotlib and numpy to plot graphs too.<br>
I am also going to do an internship under NISER's Coding Club, where we will work together and try to create an app for all the facilities offered by our SDG.<br>
Here's wishing to a productive Winter break!<br></p>
</section>
<section id="contact">
<h2>Contact</h2>
<p> You can email me at abhijeet.parida@niser.ac.in </p>
</section>
</div>
<footer>
<p>© 2024 My Website</p>
</footer>
</body>
</html>