-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (109 loc) · 2.17 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
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jophi Joseph</title>
<link href="https://fonts.googleapis.com/css2?family=Slabo+27px&display=swap" rel="stylesheet">
<style>
html, body{
height: 100%;
}
body{
margin: 0;
font-family: 'Slabo 27px', serif;
background-color: #f4f4f4;
}
.page{
height: 100%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.card{
width: 100%;
max-width: 220px;
padding: 74px 20px 52px;
background-color: #fff;
border-radius: 8px;
position: relative;
box-shadow: 0 0 2px 1px rgba(0,0,0,0.06);
}
.profile-pic{
display: block;
width: 100px;
height: 100px;
background-color: #ccc;
border-radius: 50%;
margin: 0 auto;
}
.details{
text-align: center;
margin-top: 40px;
}
.details * {
margin: 0;
}
.tel{
margin-top: 12px;
}
.card::after{
position: absolute;
content: '';
width: 60px;
height: 12px;
top: 18px;
left: 50%;
transform: translateX(-30px);
background-color: #f4f4f4;
border: 1px solid #ebebeb;
border-top-color: #ccc;
border-radius: 10px;
}
h1{
color: #4a4a4a;
font-size: 26px;
font-weight: 400;
}
p{
color: #5d5d5d;
font-size: 14px;
}
.quote{
position: fixed;
bottom: 0;
left: 0;
right: 0;
color: #6d6d6d;
text-align: center;
font-size: 12px;
padding: 6px;
}
.quote .author{
font-style: italic;
}
.quote .author::before{
content: '\0268A';
margin: 0 4px;
}
</style>
</head>
<body>
<div class="page">
<div class="card">
<img class="profile-pic" src="src/jj.jpeg" alt="">
<div class="details">
<h1>Jophi Joseph</h1>
<p>Software Developer</p>
<p class="tel">+91 9495419657</p>
<p>jjophi@gmail.com</p>
</div>
</div>
<div class="quote">
<q>When you realize nothing is lacking, the whole world belongs to you.</q>
<span class="author">Lao Tzu</span>
</div>
</div>
</body>
</html>