-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
264 lines (232 loc) · 7.39 KB
/
main.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Muhammad Asif - Cloud & AI Engineer</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
line-height: 1.6;
color: #333;
}
.header {
background: linear-gradient(135deg, #000000, #0d47a1);
color: rgb(255, 255, 255);
text-align: center;
padding: 4rem 1rem;
position: relative;
}
.profile-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 1.5rem;
}
.profile-image {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
border: 4px solid white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 2rem;
}
.about {
background: #f8f9fa;
padding: 3rem 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.skills {
margin: 2rem 0;
}
.skill-list {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.skill-tag {
background: #e3f2fd;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
transition: all 0.3s ease;
}
.skill-tag:hover {
background: #bbdefb;
transform: translateY(-2px);
}
.social-links {
display: flex;
justify-content: center;
gap: 2rem;
margin: 2rem 0;
flex-wrap: wrap;
}
.social-links a {
color: #0b0c1c;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: all 0.3s ease;
}
.social-links a:hover {
background: #e3f2fd;
transform: translateY(-2px);
}
.social-links i {
font-size: 1.5rem;
}
.contact-form {
max-width: 600px;
margin: 2rem auto;
padding: 2rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid #ddd;
border-radius: 4px;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #0d47a1;
}
button {
background: #0d47a1;
color: white;
padding: 0.8rem 1.5rem;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
background: #1565c0;
transform: translateY(-2px);
}
footer {
background: #03062a;
color: white;
text-align: center;
padding: 1.5rem;
margin-top: 2rem;
}
@media (max-width: 768px) {
.header {
padding: 2rem 1rem;
}
.profile-image {
width: 150px;
height: 150px;
}
.social-links {
gap: 1rem;
}
}
</style>
</head>
<body>
<header class="header">
<div class="profile-container">
<img src="IMG_7435_Original.jpg" alt="Muhammad Asif" class="profile-image">
<div>
<h1>Muhammad Asif</h1>
<p>Cloud Applied Generative AI Engineer | BSCS Student</p>
</div>
</div>
</header>
<section class="about">
<div class="container">
<h2>About Me</h2>
<p>I'm a 4th semester BSCS student specializing in Cloud Computing and Generative AI. Currently pursuing Certified Cloud Applied Generative AI Engineer, I'm passionate about combining cloud technologies with artificial intelligence to create innovative solutions.</p>
</div>
</section>
<main class="container">
<section class="skills">
<h2>Technical Skills</h2>
<div class="skill-list">
<span class="skill-tag">HTML</span>
<span class="skill-tag">CSS</span>
<span class="skill-tag">Java</span>
<span class="skill-tag">Python</span>
<span class="skill-tag">C++</span>
<span class="skill-tag">Cloud Computing</span>
<span class="skill-tag">Generative AI</span>
</div>
</section>
<section class="social-links">
<a href="https://github.com/YOUR_USERNAME" target="_blank" class="github">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
<a href="https://linkedin.com/in/YOUR_USERNAME" target="_blank" class="linkedin">
<i class="fab fa-linkedin"></i>
<span>LinkedIn</span>
</a>
<a href="https://twitter.com/YOUR_USERNAME" target="_blank" class="twitter">
<i class="fab fa-twitter"></i>
<span>Twitter</span>
</a>
<a href="https://facebook.com/YOUR_USERNAME" target="_blank" class="facebook">
<i class="fab fa-facebook"></i>
<span>Facebook</span>
</a>
</section>
<section class="contact-form">
<h2>Contact Me</h2>
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
</div>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2024 Muhammad Asif. All rights reserved.</p>
</footer>
</body>
</html>