-
Notifications
You must be signed in to change notification settings - Fork 0
/
testing.html
26 lines (24 loc) · 1007 Bytes
/
testing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Share Pop-up</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="profile">
<img src="profile-image.jpg" alt="Profile Image" class="profile-img">
<h1>Bhaskar Sevu</h1>
<p>UX | 3D Rendering | Graphics | Graphic Design</p>
<button id="shareBtn" class="share-icon">🔗</button>
</div>
<div id="sharePopup" class="share-popup">
<button onclick="copyLink()">Copy Link</button>
<a href="https://www.facebook.com/sharer/sharer.php?u=URL" target="_blank">Facebook</a>
<a href="https://twitter.com/intent/tweet?url=URL&text=Check this out!" target="_blank">Twitter</a>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=URL" target="_blank">LinkedIn</a>
</div>
<script src="testing.js"></script>
</body>
</html>