-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (62 loc) · 1.48 KB
/
index.html
File metadata and controls
64 lines (62 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Preethi Madhavan</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
padding: 60px 20px;
background: linear-gradient(135deg, #f9f9f9, #eef2f3);
color: #333;
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
h2 {
color: #007bff;
margin-top: 40px;
}
p {
font-size: 1.2rem;
line-height: 1.6;
max-width: 700px;
margin: 0 auto 20px auto;
}
a {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.links {
margin-top: 30px;
}
</style>
</head>
<body>
<h1>👋 Hi, I'm Preethi Sethumadhavan</h1>
<p>
I'm a <strong>Go engineer</strong> passionate about building
scalable systems and distributed infrastructure.
</p>
<h2>🌱 What I'm Learning</h2>
<p>
Currently diving into <strong>machine learning and MLOps</strong> —
exploring how large-scale infrastructure meets AI.
My focus is on bridging backend engineering with ML workflows.
</p>
<h2>🔗 Connect with me</h2>
<div class="links">
<p>
<a href="https://github.com/preethimadhavan01">GitHub</a> ·
<a href="www.linkedin.com/in/preethi-s-96569778">LinkedIn</a>
</p>
</div>
</body>
</html>