Skip to content

Commit 2676001

Browse files
authored
Update portfolio details and improve layout
1 parent bf7723d commit 2676001

1 file changed

Lines changed: 56 additions & 36 deletions

File tree

index.html

Lines changed: 56 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
5-
<title>My Portfolio</title>
4+
<title>Ashrith | Portfolio</title>
65

76
<style>
87

@@ -23,50 +22,81 @@
2322
}
2423

2524
h1{
26-
font-size:50px;
25+
font-size:60px;
26+
margin-bottom:10px;
27+
}
28+
29+
.subtitle{
30+
font-size:20px;
31+
color:#38bdf8;
32+
}
33+
34+
.social a{
35+
margin:10px;
36+
font-size:18px;
37+
color:white;
38+
text-decoration:none;
2739
}
2840

2941
section{
3042
padding:60px;
3143
text-align:center;
3244
}
3345

46+
.skills span{
47+
background:#1e293b;
48+
padding:10px 15px;
49+
margin:5px;
50+
display:inline-block;
51+
border-radius:8px;
52+
}
53+
3454
.projects{
3555
display:grid;
3656
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
3757
gap:20px;
58+
padding:20px;
3859
}
3960

4061
.card{
4162
background:#1e293b;
4263
padding:20px;
4364
border-radius:10px;
65+
transition:0.3s;
66+
}
67+
68+
.card:hover{
69+
transform:scale(1.05);
4470
}
4571

4672
.card a{
4773
color:#38bdf8;
4874
text-decoration:none;
4975
}
5076

51-
.skills span{
52-
background:#1e293b;
53-
padding:10px 15px;
54-
margin:5px;
55-
display:inline-block;
56-
border-radius:8px;
77+
footer{
78+
text-align:center;
79+
padding:30px;
80+
background:#020617;
5781
}
5882

5983
</style>
60-
6184
</head>
6285

6386
<body>
6487

6588
<header>
6689

6790
<h1>Ashrith</h1>
91+
<p class="subtitle">AI | Data Science | Python Developer</p>
92+
93+
<div class="social">
94+
95+
<a href="https://github.com/Ashrith59">GitHub</a>
96+
97+
<a href="https://www.linkedin.com/">LinkedIn</a>
6898

69-
<p>AI Developer | Data Science | Python</p>
99+
</div>
70100

71101
</header>
72102

@@ -78,11 +108,11 @@ <h2>About Me</h2>
78108
Hello! I'm Ashrith, a B.Tech student specializing in Data Science with a strong interest in Artificial Intelligence and Machine Learning.
79109
I enjoy building intelligent systems that solve real-world problems using data and computer vision.
80110

81-
I have developed projects such as a Fatigue Detection System using computer vision, a Fraud Detection System using machine learning,
82-
an AI Code Review Assistant, and a Health Risk Prediction system.
111+
I have developed projects such as a Fatigue Detection System, Fraud Detection System, AI Code Review Assistant,
112+
and a Health Risk Prediction model.
83113

84114
My technical skills include Python, Machine Learning, Deep Learning, OpenCV, and Data Analysis.
85-
I enjoy exploring new technologies and continuously improving my problem-solving and programming skills.
115+
I am passionate about creating AI-driven applications and continuously improving my technical expertise.
86116
</p>
87117

88118
</section>
@@ -98,6 +128,7 @@ <h2>Skills</h2>
98128
<span>Deep Learning</span>
99129
<span>OpenCV</span>
100130
<span>SQL</span>
131+
<span>Data Analysis</span>
101132

102133
</div>
103134

@@ -111,48 +142,37 @@ <h2>Projects</h2>
111142

112143
<div class="card">
113144
<h3>Fatigue Detection System</h3>
114-
<a href="https://github.com/Ashrith59/Fatigue-detection-system">GitHub</a>
145+
<p>Real-time fatigue detection using computer vision.</p>
146+
<a href="https://github.com/Ashrith59/Fatigue-detection-system">View Project</a>
115147
</div>
116148

117149
<div class="card">
118150
<h3>Fraud Detection System</h3>
119-
<a href="https://github.com/Ashrith59/Fraud-detection-system">GitHub</a>
151+
<p>Machine learning model detecting fraudulent transactions.</p>
152+
<a href="https://github.com/Ashrith59/Fraud-detection-system">View Project</a>
120153
</div>
121154

122155
<div class="card">
123156
<h3>AI Code Review Assistant</h3>
124-
<a href="https://github.com/Ashrith59/AI-Code-Review-Assistant">GitHub</a>
157+
<p>AI assistant that reviews code and suggests improvements.</p>
158+
<a href="https://github.com/Ashrith59/AI-Code-Review-Assistant">View Project</a>
125159
</div>
126160

127161
<div class="card">
128162
<h3>Health Risk Prediction</h3>
129-
<a href="https://github.com/Ashrith59/care-ai-health-risk-predication">GitHub</a>
163+
<p>AI model predicting health risk using medical data.</p>
164+
<a href="https://github.com/Ashrith59/care-ai-health-risk-predication">View Project</a>
130165
</div>
131166

132167
</div>
133168

134169
</section>
135170

136-
<section>
137-
138-
<h2>Contact</h2>
139-
140-
<p>
141-
GitHub:
142-
<a href="https://github.com/Ashrith59" style="color:#38bdf8;">
143-
github.com/Ashrith59
144-
</a>
145-
</p>
146-
147-
<p>
148-
LinkedIn:
149-
<a href="https://www.linkedin.com/in/varakavi-ashrith-a48b20293" style="color:#38bdf8;">
150-
View My LinkedIn
151-
</a>
152-
</p>
171+
<footer>
153172

173+
<p>Ashrith</p>
154174

155-
</section>
175+
</footer>
156176

157177
</body>
158178
</html>

0 commit comments

Comments
 (0)