-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from Apoorva57/Apoorva57
Added a webpage
- Loading branch information
Showing
2 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Portfolio</title> | ||
<link rel="stylesheet" href="Apoorva57.css"> | ||
</head> | ||
<body> | ||
<!-- Glassmorphism Banner --> | ||
<header class="banner"> | ||
<div class="glass"> | ||
<h1>Apoorva</h1> | ||
</div> | ||
</header> | ||
|
||
<!-- Project Section --> | ||
<section class="projects"> | ||
<h2>My Projects</h2> | ||
<div class="card-container"> | ||
<div class="card"> | ||
<h3>Vision Text</h3> | ||
<p>Developed an Android application utilizing machine learning algorithms for precise text recognition and extraction from camera images, achieving 75% accuracy, comparable to Google Lens. Integrated Firebase ML Kit for improved results.</p> | ||
</div> | ||
<div class="card"> | ||
<h3>Holistic Health Prediction</h3> | ||
<p>Engineered advanced models for risk assessment of Parkinson’s, diabetes, and heart disease, driven by personal health challenges. Achieved a 65% improvement in predictive accuracy using Scikit-learn, Pandas, and NumPy.</p> | ||
</div> | ||
<div class="card"> | ||
<h3>Grocery App</h3> | ||
<p>Designed a grocery app combining a checklist and expense tracker, reducing omissions by 55% and increasing cost awareness by 25%. Developed using Kotlin in Android Studio with Firebase integration.</p> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: 'Arial', sans-serif; | ||
} | ||
|
||
body { | ||
background-color: #d097a6; | ||
} | ||
|
||
.banner { | ||
height: 500px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
position: relative; | ||
background-image: url('https://preview.redd.it/gdyanfyezii71.png?width=1920&format=png&auto=webp&s=76963d5e0278437a2ec13d614db73a7648a99c49'); | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.glass { | ||
background: rgba(255, 234, 234, 0.263); | ||
border-radius: 10px; | ||
padding: 100px 200px; | ||
backdrop-filter: blur(10px); | ||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.glass h1 { | ||
color: #cb1f5b; | ||
font-size: 4rem; | ||
} | ||
|
||
.projects { | ||
padding: 50px 0; | ||
text-align: center; | ||
} | ||
|
||
.projects h2 { | ||
font-size: 2.5rem; | ||
margin-bottom: 30px; | ||
color: #d14467; | ||
} | ||
|
||
.card-container { | ||
display: flex; | ||
justify-content: space-around; | ||
gap: 20px; | ||
padding: 0 50px; | ||
} | ||
|
||
.card { | ||
background-color: rgb(152, 22, 66); | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
padding: 20px; | ||
width: 300px; | ||
transition: transform 0.3s ease; | ||
} | ||
|
||
.card:hover { | ||
transform: translateY(-10px); | ||
} | ||
|
||
.card h3 { | ||
font-size: 1.5rem; | ||
margin-bottom: 10px; | ||
color: #f8a8be; | ||
} | ||
|
||
.card p { | ||
font-size: 1rem; | ||
color: #e593a8; | ||
} |