-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathyuvi.html
150 lines (131 loc) · 3.99 KB
/
yuvi.html
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yuvu's Portfolio</title>
<style>
/* CSS Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
color: #333;
background: linear-gradient(to bottom, #3a6073, #16222a);
overflow-x: hidden;
}
.header {
background: #1d4350;
padding: 30px;
text-align: center;
color: #f5f5f5;
font-size: 24px;
font-weight: bold;
letter-spacing: 2px;
text-transform: uppercase;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px 20px;
max-width: 800px;
margin: auto;
}
.profile-pic {
border-radius: 50%;
width: 150px;
height: 150px;
border: 5px solid #f5f5f5;
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
margin-bottom: 20px;
}
.info {
text-align: center;
color: #f5f5f5;
}
.info h1 {
font-size: 36px;
color: #e2f1f9;
margin-bottom: 10px;
}
.info h3 {
font-size: 20px;
color: #e0e0e0;
margin-bottom: 20px;
}
.bio {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
color: #f0f0f0;
font-size: 18px;
line-height: 1.6;
max-width: 600px;
}
.projects {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 40px;
}
.project-card {
background: #213942;
color: #f5f5f5;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
width: calc(50% - 20px);
transition: transform 0.3s;
}
.project-card:hover {
transform: scale(1.05);
}
.project-card h3 {
font-size: 22px;
color: #e2f1f9;
margin-bottom: 10px;
}
.project-card p {
font-size: 16px;
line-height: 1.4;
}
footer {
background: #1d4350;
color: #f5f5f5;
padding: 20px;
text-align: center;
margin-top: 50px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="header">Yuvu's Portfolio</div>
<div class="container">
<img src="https://via.placeholder.com/150" alt="Profile Picture" class="profile-pic">
<div class="info">
<h1>Yuvu</h1>
<h3>Mechanical Engineering Student<br>Birla Institute of Technology</h3>
<p class="bio">Hi! I'm Yuvu, a passionate Mechanical Engineering student with an interest in exploring the realms of technology and design. I’m always eager to learn and work on meaningful projects that challenge me and drive me toward growth. Let's make something awesome together!</p>
</div>
<div class="projects">
<div class="project-card">
<h3>Project Title 1</h3>
<p>A brief description of the project goes here. This is an example of a project I've worked on.</p>
</div>
<div class="project-card">
<h3>Project Title 2</h3>
<p>A brief description of another project goes here. Showcasing my skills in mechanical engineering.</p>
</div>
<!-- Add more projects as needed -->
</div>
</div>
<footer>
© 2024 Yuvu - Birla Institute of Technology
</footer>
</body>
</html>