-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link rel="stylesheet" href="style.css">
<link href='https://cdn.boxicons.com/3.0.3/fonts/basic/boxicons.min.css' rel='stylesheet'>
<link href='https://cdn.boxicons.com/3.0.3/fonts/brands/boxicons-brands.min.css' rel='stylesheet'>
</head>
<body>
<div class="profile-card">
<div class="image">
<img src="profilePic.jpg" alt="profile image" class="profile-image">
</div>
<div class="text-data">
<span class="name">Aman Sharma</span>
<span class="job">Web Developer</span>
</div>
<div class="media-button">
<a href="#" style="background: #3468cf;" class="link">
<i class='bxl bx-linkedin-square'></i>
</a>
<!-- <a href="#" style="background: #ff0000 ;" class="link">
<i class='bxl bx-youtube' ></i>
</a> -->
<a href="#" style="background: black;" class="link">
<i class='bxl bx-twitter-x' ></i>
</a>
<a href="#" style="background: rgb(255, 36, 36);" class="link">
<i class='bxl bx-instagram' ></i>
</a>
</div>
<div class="buttons">
<button class="button">Follow</button>
</div>
<div class="analytics">
<div class="data">
<i class='bxr bx-heart' ></i>
<span class="number">60k</span>
</div>
<div class="data">
<i class='bxr bx-message-circle-notification' ></i>
<span class="number">10k</span>
</div>
<div class="data">
<i class='bxr bx-share' ></i>
<span class="number">6k</span>
</div>
</div>
</div>
</body>
</html>