-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.69 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
<!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>
<!-- 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="image.jpeg" class="profile-image" alt="Profile image">
</div>
<div class="text-data">
<span class="name">Manish Kumar</span>
<span class="job">Frontend Developer</span>
</div>
<div class="media-buttons">
<a href="https://github.com/sde-manish" target="_blank" style="background: #7c36b3;" class="link">
<i class='bx bxl-github'></i>
</a>
<a href="https://twitter.com/sde_manish" target="_blank" style="background: #0bacd9;" class="link">
<i class='bx bxl-twitter'></i>
</a>
<a href="https://www.linkedin.com/in/manish-kumar-36b912143?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3Bk4UU1OsHTmiWTy6qlQS8og%3D%3D" target="_blank" style="background: #1422e3;" class="link">
<i class='bx bxl-linkedin'></i>
</a>
<a href="https://www.instagram.com/who_thedaydreamer/" target="_blank" style="background: #e33469;" class="link">
<i class='bx bxl-instagram'></i>
</a>
</div>
<div class="contact">
<a href="contact.html" class="contact-me">Contact me</a>
</div>
</div>
</body>
</html>