diff --git a/student-resumes/Arpita-resume/images/Online_shop.jpg b/student-resumes/Arpita-resume/images/Online_shop.jpg new file mode 100644 index 0000000..0dacd94 Binary files /dev/null and b/student-resumes/Arpita-resume/images/Online_shop.jpg differ diff --git a/student-resumes/Arpita-resume/images/bg1.jpg b/student-resumes/Arpita-resume/images/bg1.jpg new file mode 100644 index 0000000..9da48a9 Binary files /dev/null and b/student-resumes/Arpita-resume/images/bg1.jpg differ diff --git a/student-resumes/Arpita-resume/images/coffe_shop.jpg b/student-resumes/Arpita-resume/images/coffe_shop.jpg new file mode 100644 index 0000000..e88d882 Binary files /dev/null and b/student-resumes/Arpita-resume/images/coffe_shop.jpg differ diff --git a/student-resumes/Arpita-resume/images/ecommerce.jpeg b/student-resumes/Arpita-resume/images/ecommerce.jpeg new file mode 100644 index 0000000..27aba56 Binary files /dev/null and b/student-resumes/Arpita-resume/images/ecommerce.jpeg differ diff --git a/student-resumes/Arpita-resume/images/img2.jpg b/student-resumes/Arpita-resume/images/img2.jpg new file mode 100644 index 0000000..05d3184 Binary files /dev/null and b/student-resumes/Arpita-resume/images/img2.jpg differ diff --git a/student-resumes/Arpita-resume/images/logo1.png b/student-resumes/Arpita-resume/images/logo1.png new file mode 100644 index 0000000..5682ffd Binary files /dev/null and b/student-resumes/Arpita-resume/images/logo1.png differ diff --git a/student-resumes/Arpita-resume/images/travel.jpg b/student-resumes/Arpita-resume/images/travel.jpg new file mode 100644 index 0000000..5f00de0 Binary files /dev/null and b/student-resumes/Arpita-resume/images/travel.jpg differ diff --git a/student-resumes/Arpita-resume/index.html b/student-resumes/Arpita-resume/index.html new file mode 100644 index 0000000..1115e10 --- /dev/null +++ b/student-resumes/Arpita-resume/index.html @@ -0,0 +1,165 @@ + + + + + + + My Portfolio + + + + + + +
+
+
+
+ +
+
+

About Me

+

Dedicated computer application graduate with 1.8 years of experience in java development seeking + a position as a junior java developer to leverage skills in Java, spring boot & MySQL. +

+
+ + + +
+
+
    +
  • Java
  • +
  • Spring boot
  • +
  • MySQL
  • +
  • CSS
  • +
  • HTML
  • +
  • Git
  • +
+
+
+
    +
  • Company name - System Associate [2022 Aug - 2023 Oct] + - Haven’t got any chance to work on any projects due to lack of experience/projects in + the company. Eventually got laid off.
  • +
  • Company name - System associate trainee [2022 Mar – 2023 Jul] + - Successfully completed training which covered fundamentals of Java(OOPS), spring Boot, + REST API’s, MySQL, HTML, CSS, Git & software engineering practices.
  • +
+
+
+
    +
  • 2021
    Bachelor's of computer application from xxx college
  • +
  • 2018
    Pre-university from xxx college
  • +
  • 2016
    High school from xxx school
  • +
+
+
+
+
+
+ +
+
+

My Projects

+
+
+ +

Project 1

+

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quae laborum sapiente, autem + consequatur itaque, ullam laudantium et dignissimos enim, eum facere ipsum harum sit! Error + reiciendis repudiandae vel totam harum ullam expedita hic dolores sed!

+ Learn more +
+
+ +

Project 2

+

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quae laborum sapiente, autem + consequatur itaque, ullam laudantium et dignissimos enim, eum facere ipsum harum sit! Error + reiciendis repudiandae vel totam harum ullam expedita hic dolores sed!

+ Learn more +
+
+ +

Project 3

+

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quae laborum sapiente, autem + consequatur itaque, ullam laudantium et dignissimos enim, eum facere ipsum harum sit! + Error + reiciendis repudiandae vel totam harum ullam expedita hic dolores sed!

+ Learn more +
+
+
+
+ +
+
+

My Work

+
+
+ +
+

Coffee Shop

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet distinctio laudantium + repellendus consequatur iusto vel enim commodi perspiciatis quia quis.

+ +
+
+
+ +
+

Travel Website

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet distinctio laudantium + repellendus consequatur iusto vel enim commodi perspiciatis quia quis.

+ +
+
+
+ +
+

Online Shopping

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet distinctio laudantium + repellendus consequatur iusto vel enim commodi perspiciatis quia quis.

+ +
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/student-resumes/Arpita-resume/style.css b/student-resumes/Arpita-resume/style.css new file mode 100644 index 0000000..32283bb --- /dev/null +++ b/student-resumes/Arpita-resume/style.css @@ -0,0 +1,283 @@ +* { + margin: 0; + padding: 0; + font-family: sans-serif; + box-sizing: border-box; +} + +body { + background: #551818; +} + +#header { + width: 100%; + height: 100vh; + background-image: url(images/bg1.jpg); + background-size: cover; + background-position: center; + +} + +.contanier { + padding: 10px 10px; + +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + flex-wrap: wrap; + +} + +.logo { + width: 80px; + margin: 6px 0px 0px 58px; + +} + +nav ul li { + display: inline-block; + list-style: none; + margin: 10px 5px; +} + +nav ul li a { + color: rgb(255, 255, 255); + text-decoration: none; + font-size: 30px; + background: #000; + border-radius: 10px; + padding: 4px; + position: relative; + text-shadow: #1b0c0c; +} + +nav ul li a::after { + content: ''; + width: 0; + height: 6px; + background: rgb(200, 5, 5); + position: absolute; + left: 0; + bottom: -6px; + transition: 0.5s; +} + +nav ul li a:hover::after { + width: 100%; +} + +.header-text { + margin-top: 10%; + font-size: 35px; +} + +.header-text h1 { + font-size: 65px; + margin-top: 25px; +} + +.header-text h1 span { + color: rgb(10, 19, 116); +} + +/*------------------about-------------------*/ +#about { + padding: 80px 0; + color: aliceblue; +} + +.row { + display: flex; + justify-content: space-between; + flex-wrap: wrap; +} + +.about-col-1 { + flex-basis: 35%; + +} + +.about-col-1 img { + width: 100%; + border-radius: 20px; +} + +.about-col-2 { + flex-basis: 60%; +} + +p { + font-size: 20px; + color: rgb(252, 251, 250); +} + +.sub-title { + font-size: 60px; + font-weight: bolder; + color: aliceblue; +} + +.tab-titles { + display: flex; + margin: 20px 0 40px; +} + +.tab-links { + margin-right: 50px; + font-size: 40px; + font-weight: 500; + cursor: pointer; + position: relative; +} + +.tab-links::after { + content: ''; + width: 0; + height: 6px; + background: rgb(15, 155, 64); + position: absolute; + left: 0; + bottom: -6px; + transition: 0.5s; +} + +.tab-links.active-link:hover::after { + width: 50%; +} + +.tab-contents ul li { + list-style: none; + margin: 10px 0; +} + +.tab-contents ul span { + font-size: 20px; + color: rgb(83, 170, 228); +} + +.tab-contents { + display: none; +} + +.tab-contents.active-tab { + display: block; +} + +/* ------------------services---------------- */ +#services { + pad: 30px 0; +} + +.services-list { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + grid-gap: 200px; + margin-top: 50px; +} + +.services-list div { + background: #634a17; + padding: 40px; + font-size: 13px; + font-weight: 300; + border-radius: 10px; + transition: background 0.5s, transform 0.5s; +} + +.services-list div i { + font-size: 50px; + margin-bottom: 30px; +} + +.services-list div h2 { + font-size: 30px; + font-weight: 500; + margin-bottom: 15px; +} + +.services-list div a { + text-decoration: none; + color: #be9494; + font-size: 12px; + margin-top: 20px; + display: inline-block; + +} + +.services-list div:hover { + background: #64b2df; + transform: translateY(-10px); +} + +/* -------------------------portfolio----------------------------- */ +#portfolio { + padding: 50px 0; +} + +.work-list { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + grid-gap: 200px; + margin-top: 80px; +} + +.work { + border-radius: 10px; + position: relative; + overflow: hidden; +} + +.work img { + width: 100%; + border-radius: 10px; + display: block; + transition: transfrom 0.5s; +} + +.layer { + width: 100%; + height: 0; + background: linear-gradient(rgba(0, 0, 0, 0.6), #ff004f); + border-radius: 10px; + position: absolute; + left: 0; + bottom: 0; + overflow: hidden; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + padding: 0 40px; + text-align: center; + font-size: 15px; + transition: height 0.5s; +} + +.layer h3 { + color: whitesmoke; + font-weight:bolder; + margin-bottom: 20px; +} + +.layer a { + margin-top: 20px; + color: #5e2b2b; + text-decoration: none; + font-size: 18px; + line-height: 60px; + background: white; + width: 60px; + height: 60px; + +} + +.work:hover img { + transform: scale(1.1); +} + +.work:hover .layer { + height: 100%; +} \ No newline at end of file