Spaces:
Running
Running
Update index.html
Browse files- index.html +14 -1
index.html
CHANGED
|
@@ -18,6 +18,19 @@
|
|
| 18 |
text-align: center;
|
| 19 |
padding: 40px 20px;
|
| 20 |
border-bottom: 5px solid #007bff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
}
|
| 22 |
nav ul {
|
| 23 |
list-style-type: none;
|
|
@@ -71,6 +84,7 @@
|
|
| 71 |
</head>
|
| 72 |
<body>
|
| 73 |
<header>
|
|
|
|
| 74 |
<h1>Alexander Reddy</h1>
|
| 75 |
<p>Machine Learning Engineer | Deep Learning | GenAI | End-to-End AI Solutions</p>
|
| 76 |
</header>
|
|
@@ -130,4 +144,3 @@
|
|
| 130 |
</footer>
|
| 131 |
</body>
|
| 132 |
</html>
|
| 133 |
-
|
|
|
|
| 18 |
text-align: center;
|
| 19 |
padding: 40px 20px;
|
| 20 |
border-bottom: 5px solid #007bff;
|
| 21 |
+
position: relative;
|
| 22 |
+
}
|
| 23 |
+
header img {
|
| 24 |
+
width: 150px;
|
| 25 |
+
height: 150px;
|
| 26 |
+
border-radius: 50%;
|
| 27 |
+
border: 5px solid #007bff;
|
| 28 |
+
object-fit: cover;
|
| 29 |
+
margin-bottom: 20px;
|
| 30 |
+
transition: transform 0.3s ease-in-out;
|
| 31 |
+
}
|
| 32 |
+
header img:hover {
|
| 33 |
+
transform: scale(1.1);
|
| 34 |
}
|
| 35 |
nav ul {
|
| 36 |
list-style-type: none;
|
|
|
|
| 84 |
</head>
|
| 85 |
<body>
|
| 86 |
<header>
|
| 87 |
+
<img src="./4ad4bbdb-d1a3-4626-ab77-a1afa2c01763.png" alt="Alexander Reddy">
|
| 88 |
<h1>Alexander Reddy</h1>
|
| 89 |
<p>Machine Learning Engineer | Deep Learning | GenAI | End-to-End AI Solutions</p>
|
| 90 |
</header>
|
|
|
|
| 144 |
</footer>
|
| 145 |
</body>
|
| 146 |
</html>
|
|
|