-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (98 loc) · 2.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Info for Fizan Ahmed</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.card {
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 320px;
text-align: center;
padding: 20px;
}
.profile-pic {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 0 auto 20px;
}
h1 {
font-size: 22px;
color: #333;
margin: 0;
}
h2 {
font-size: 16px;
color: #666;
margin: 10px 0;
}
p {
font-size: 14px;
color: #555;
line-height: 1.5;
margin: 10px 0;
}
.contact-info {
margin: 20px 0;
text-align: left;
padding-left: 40px;
}
.contact-info div {
display: flex;
align-items: center;
margin: 10px 0;
}
.icon {
width: 20px;
height: 20px;
margin-right: 10px;
vertical-align: middle;
}
.button {
background-color: #1E90FF;
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 8px;
display: inline-block;
font-size: 14px;
margin-top: 20px;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="card">
<img src="FA.jpg" alt="Fizan Ahmed" class="profile-pic">
<h1>Fizan Ahmed</h1>
<h2>United Nations Development Programme</h2>
<p>Driving impactful solutions for a sustainable and resilient future.</p>
<div class="contact-info">
<div>
<img src="phone.svg" alt="Phone Icon" class="icon">
<span>+960 779-3880</span>
</div>
<div>
<img src="email.svg" alt="Email Icon" class="icon">
<span>[email protected]</span>
</div>
</div>
<a href="vcard.vcf" download="Fizan_Ahmed.vcf" class="button">+ Add to Contacts</a>
</div>
</body>
</html>