A Wife Link — Shazia Sahari In I Have
If you want visitors to copy the link easily (e.g., on a landing page), add a small JavaScript button:
<button id="copyLinkBtn" style="margin-top:8px;">Copy video link</button>
<script>
document.getElementById('copyLinkBtn').addEventListener('click', function ()
const link = 'https://youtu.be/XXXXXXXXXXX';
navigator.clipboard.writeText(link).then(() =>
alert('Link copied to clipboard!');
).catch(err =>
console.error('Copy failed', err);
);
);
</script>
| Need | Syntax |
|------|--------|
| Open in a new tab (GitHub, GitLab, many static‑site generators) | Usually handled automatically; if not, use HTML <a> inside Markdown. |
| Add a tooltip (title) | [Shazia Sahari – I Have a Wife](https://youtu.be/XXXXXXXXXXX "Watch on YouTube") |
| Add an image preview (useful in README files) |  followed by the link, or embed via HTML. | shazia sahari in i have a wife link
| Attribute | Purpose |
|-----------|---------|
| href | Destination URL (the video link you copied). |
| target="_blank" | Opens the link in a new tab/window, keeping visitors on your site. |
| rel="noopener noreferrer" | Security best‑practice when using target="_blank" (prevents the new page from accessing your page via window.opener). |
| Link text (Shazia Sahari – I Have a Wife) | The clickable text that users see. Keep it descriptive for SEO and accessibility. | If you want visitors to copy the link easily (e
If you prefer the video to play inside your page (e.g., blog post, landing page): | Need | Syntax | |------|--------| | Open