Sorry for such a silly doubt but I am new to HTML.
I made a simple pop up using anchor tag using below code:
<a href="http://mywebsite.com"
target="popup"
onclick="window.open('http://mywebsite.com','popup','width=600,height=600'); return false;">
Open Link in Popup
</a>
This is working fine but I want this pop up to appear at center of the screen. I want to do it solely using anchor tag without using javascript.
Please suggest me the attributes to make it appear at center, if it is possible only with anchor tag(HTML only). Thank you.