-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (95 loc) · 2.84 KB
/
Copy pathindex.html
File metadata and controls
107 lines (95 loc) · 2.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<style>
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(33, 150, 243, 0.8));
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
color: white;
}
.portfolio-container {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 30px 50px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
width: 80%;
max-width: 800px;
}
.portfolio-content {
display: flex;
flex-direction: column;
gap: 20px;
}
.title {
font-size: 2.5rem;
font-weight: bold;
color: #fff;
}
.description {
font-size: 1.2rem;
color: #eee;
line-height: 1.5;
}
.skills {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.skill {
background: rgba(255, 255, 255, 0.3);
padding: 10px 20px;
border-radius: 30px;
font-size: 1.1rem;
transition: transform 0.3s ease;
}
.skill:hover {
transform: scale(1.1);
}
.footer {
margin-top: 30px;
font-size: 1rem;
color: rgba(255, 255, 255, 0.7);
}
</style>
</head>
<body>
<div class="portfolio-container">
<div class="portfolio-content">
<div class="title">
<h1>Prathmesh Kulkarni</h1>
</div>
<div class="description">
<p>Hello! I'm a sfgfh xCollege of Engineering and Technology) passionate about technology and coding. My primary skills include Python, TensorFlow, and SQL, and I'm always looking to expand my knowledge in these areas!</p>
</div>
<div class="skills">
<div class="skill">Python</div>
<div class="skill">TensorFlow</div>
<div class="skill">SQL</div>
</div>
<div class="footer">
<p>Feel free to reach out to me via email or LinkedIn for more details.</p>
</div>
</div>
</div>
</body>
</html>