forked from you-dont-need/You-Dont-Need-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
card2.html
45 lines (40 loc) · 1.39 KB
/
card2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card 2</title>
<link rel="stylesheet" href="card2.css">
</head>
<body>
<div class="profile-card">
<div class="profile-card-header">
<div class="profile-image"></div>
<div class="profile-info">
<h3 class="profile-name">Pravin Nandankar</h3>
<p class="profile-desc">Full stack web Developer</p>
</div>
</div>
<div class="profile-card-body">
<ul class="status">
<li>
<span class="status-value">532</span>
<span class="status-text">Posts</span>
</li>
<li>
<span class="status-value">1.5m</span>
<span class="status-text">Followers</span>
</li>
<li>
<span class="status-value">423</span>
<span class="status-text">Following</span>
</li>
</ul>
<div class="action">
<button class="btn btn-pink">Follow</button>
<button class="btn btn-gray-outline">Message</button>
</div>
</div>
</div>
</body>
</html>