# Save this as popup.html and open in browser
with open('popup.html', 'w') as f:
f.write("""
<!DOCTYPE html>
<html>
<head>
<title>Link Popup Example</title>
<style>
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background: white;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
z-index: 1000;
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 999;
}
.close-btn {
float: right;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Welcome to My Website</h1>
<button onclick="showPopup()">Click for Important Link</button>
<div class="overlay" id="overlay"></div>
<div class="popup" id="popup">
<span class="close-btn" onclick="hidePopup()">×</span>
<h2>Here's your link!</h2>
<p><a href="https://deep-kaur.com/" target="_blank">Visit Example Website</a></p>
</div>
<script>
function showPopup() {
document.getElementById('popup').style.display = 'block';
document.getElementById('overlay').style.display = 'block';
}
function hidePopup() {
document.getElementById('popup').style.display = 'none';
document.getElementById('overlay').style.display = 'none';
}
// Close popup when clicking outside
document.getElementById('overlay').addEventListener('click', hidePopup);
</script>
</body>
</html>
""")
print("https://deep-kaur.com/")
print("https://deep-kaur.com/gallery.html")
print("https://deep-kaur.com/rates.html")
print("https://deep-kaur.com/ludhiana-escorts.html")
print("https://deep-kaur.com/goa-escorts.html")
print("https://deep-kaur.com/shillong-escorts.html")
print("https://deep-kaur.com/itanagar-escorts.html")
print("https://deep-kaur.com/dispur-escorts.html")
print("https://deep-kaur.com/guwahati-escorts.html")
print("https://deep-kaur.com/patna-escorts.html")