-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (58 loc) · 1.83 KB
/
index.html
File metadata and controls
61 lines (58 loc) · 1.83 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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card UI Design</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- Boxicons CSS -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="profile-card">
<div class="image">
<img src="profile.jpg" alt="" class="profile-img">
</div>
<div class="text-data">
<span class="name">PIYUSH SHARMA</span>
<span class="about"> Tech Youtuber & Digital Creator</span>
</div>
<div class="media-buttons">
<a href="https://www.facebook.com/piyush.bhatt.1428?mibextid=ZbWKwL" style="background: #4267b2;" class="link">
<i class='bx bxl-facebook' ></i>
</a>
<a href="https://youtube.com/@WDTECH2?si=3sw1Z1f3u69edCR1" style="background: #1da1f2 ;" class="link">
<i class='bx bxl-twitter' ></i>
</a>
<a href="https://instagram.com/wd_tech2?igshid=MzMyNGUyNmU2YQ==" style="background: #e1306c;" class="link">
<i class='bx bxl-instagram' ></i>
</a>
<a href="https://youtube.com/@WDTECH2?si=3sw1Z1f3u69edCR1" style="background: #ff0000 ;" class="link">
<i class='bx bxl-youtube' ></i>
</a>
</div>
<div class="buttons">
<button class="button">Subscribe</button>
<button class="button">Message</button>
</div>
<div class="analytics">
<div class="data">
<i class="bx bx-heart"></i>
<span class="number"></span>
</div>
<div class="data">
<i class="bx bx-message-rounded"></i>
<span class="number"></span>
</div>
<div class="data">
<i class="bx bx-share"></i>
<span class="number"></span>
</div>
</div>
</div>
<script>
alert("welcome my profile card")
</script>
</body>
</html>