-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vikas Vk | profile card</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div class="profile-card">
<div class="info-box">
<img src="profile-img.jpeg" alt="profile-img" >
<div class="info">
<h2>Vikas Vk</h2>
<p>Web Developer</p>
</div>
</div>
<div class="numbers-grid">
<div class="box">
<p>152</p>
<p>Posts</p>
</div>
<div class="box">
<p>230k</p>
<p>Followers</p>
</div>
<div class="box">
<p>22</p>
<p>Following</p>
</div>
</div>
<div class="btn-box">
<button class="follow">Follow</button>
<button class="message">Message</button>
</div>
</div>
</body>
</html>