forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.html
139 lines (126 loc) · 3.35 KB
/
user.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Profile</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
body {
background-color: #505050;
font-family: "Poppins", sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.card {
background-color: #fff;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
overflow: hidden;
width: 350px;
text-align: center;
}
.upper img {
width: 100%;
height: 100px;
object-fit: cover;
}
.profile {
position: relative;
top: -40px;
margin-bottom: -40px;
}
.profile img {
border-radius: 50%;
border: 4px solid #fff;
width: 80px;
height: 80px;
object-fit: cover;
}
.card h4 {
font-weight: 600;
margin: 0;
padding-top: 10px;
}
.card span {
font-size: 14px;
color: #777;
}
.follow {
background-color: #007bff;
color: #fff;
border: none;
border-radius: 20px;
padding: 8px 20px;
cursor: pointer;
font-size: 14px;
margin-top: 15px;
}
.follow:hover {
background-color: #0056b3;
}
.stats {
display: flex;
justify-content: space-around;
padding: 15px 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
margin-top: 20px;
}
.stats div {
text-align: center;
}
.stats h6 {
font-size: 12px;
font-weight: 600;
margin: 0;
color: #555;
}
.stats span {
font-size: 18px;
font-weight: 500;
display: block;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<div class="upper">
<img src="undefined - Imgur.jpg" alt="Cover Image">
</div>
<div class="profile">
<img src="download (2).jpg" alt="Profile Image">
</div>
<div>
<h4>Arman Bhadoriya</h4>
<span>arman@gmail.com</span>
<br>
<button class="follow">Follow</button>
</div>
<div class="stats">
<div>
<h6>Followers</h6>
<span>8,797</span>
</div>
<div>
<h6>Projects</h6>
<span>142</span>
</div>
<div>
<h6>Ranks</h6>
<span>129</span>
</div>
</div>
</div>
</div>
</body>
</html>