I am a current first year student at Indian Institute of Information Technology, Kalyani. I love
+ learning new things about computers. I love competitive programming and am learning more and more
+ about new things in computer science.
+
Ramakrisna Mission Sarada Vidyapith.Got 95% in Class 10 board.
+
+
+
+
2020-2022
+
Higher-Secondary
+
Arambagh High School.Got 96.5% in boards.Qualified Jee Adv.
+
+
+
+
2022-2026
+
B.Tech College
+
IIIT Kalyani.B-Tech first year.
+
+
+
+
+
+
+
+
+
Experience
+
+
+
+
+
2019-2020
+
Photo Editing
+
Ametaur at this.Used Canva made funky edits
+
+
+
+
2022-2023
+
Competitive-Programming
+
Doing this for 5 months.2* in codechef.
+
+
+
+
2022-2023
+
Web-Dev
+
Learning new things.
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.html b/index.html
index 41f52ed..27e7126 100644
--- a/index.html
+++ b/index.html
@@ -1,56 +1,95 @@
-
-
-
-
-
-
-
- Basic Portfolio Website
-
-
-
-
-
-
-
-
-
Hi, I am <name>
-
Frontend developer
-
-
-
-
-
-
-
-
-
-
- About me
-
-
-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Illum voluptates provident molestias a
- animi facilis iusto voluptatum repellat eligendi consequatur distinctio placeat mollitia veritatis
- recusandae, ad, quasi commodi enim quos! Quasi aspernatur veniam, blanditiis sint necessitatibus dicta
- libero voluptatibus reiciendis asperiores nemo maiores ducimus corrupti magnam error voluptatum ab velit.
-
+
+
+
\ No newline at end of file
diff --git a/style.css b/style.css
deleted file mode 100644
index 7e137a6..0000000
--- a/style.css
+++ /dev/null
@@ -1,98 +0,0 @@
-*{
- margin: 0;
- padding: 0; /* providing default margin and padding to be 0 */
-}
-
-/* home page styling */
-
-.homePage{ /* selecting div with class "homePage" and adding styling to it */
- display: flex; /* creating a flex box */
- justify-content: space-around;
- height: 100vh;
- align-items: center;
-}
-
-.myImage img{ /* selecting div with class "myImage" then navigating to img tag inside it, and adding styling to it */
- height: 18rem;
- width: auto;
- border-radius: 1rem;
-}
-
-.name{ /* selecting div with class "name" and adding styling to it */
- font-size: 3rem;
-}
-
-.intro p{ /* selecting div with class "intro" then navigating to p tag inside it, and adding styling to it */
- font-size: 2rem;
- line-height: 3rem;
-}
-
-.your_button{ /* selecting button with class "your_button" and adding styling to it */
- font-size: 1rem;
- padding: 5px;
- cursor: pointer;
- background-color: rgb(42, 42, 255);
- border-radius: 5px;
- width:100px;
- height:50px;
- border:2px solid white;
- color:white;
- text-transform: capitalize;
-}
-.your_button:hover{ /* here we add a special animation to button when it is hovered (hover: when a cursor roams in the specified setion it is the hover state for that element) */
-
- box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
-}
-/* about me */
-.about{ /* selecting div with class "about" and adding styling to it */
- min-height: 60vh;
-}
-
-.about_heading{ /* selecting div with class "about_heading" and adding styling to it */
- font-size: 3rem;
- text-align: center;
- text-decoration: underline;
- font-weight:600;
-}
-
-/* contact */
-.contact_sec{ /* selecting div with class "contact_sec" and adding styling to it */
- height: 60vh;
- width:70vw;
- margin: 0 auto;
-}
-
-.contact_heading{ /* selecting div with class "contact_heading" and adding styling to it */
- font-weight:600;
- font-size: 3rem;
- text-align: center;
- text-decoration: underline;
-}
-
-.contact_info{ /* selecting div with class "contact_info" and adding styling to it */
- font-size:1.3em;
- font-weight: 600;
- margin-top:10vh;
-}
-.data{ /* selecting div with class "data" and adding styling to it */
- font-weight:initial;
-}
-
-.Email,.mobile_no,.linkdin,.github,.others{ /* selecting many divs with the class listed and adding same styling to all of them */
- padding:2vh 0;
-}
-
-span a{ /* selecting span and then navigating to a tag in it and adding styling to it */
- color:black;
-}
-
-span a:hover{ /* here we add a special animation to anchor tag when it is hovered (hover: when a cursor roams in the specified setion it is the hover state for that element) */
- color:blue;
-}
-
-
-.para{ /* selecting div with class "para" and adding styling to it */
- width:70vw;
- margin:8vh auto;
- font-size: 2em;
-}
\ No newline at end of file