<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=cp-1251"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body> <a href="#" onclick="document.getElementById('wind').style.display='block'; return false;">Открыть окно</a> <div id="wind"> <button type="button" value="закрыть" onclick="document.getElementById('wind').style.display='none'; return false;"> закрыть</button> </div> </body> </html>
a { text-decoration:none; color:#03508c; font-weight:bold; font-size:16px; } #wind { position: absolute; width:320px; left: 35%; top: 100px; border:solid #105a98 4px; display: none; z-index: 10; overflow: hidden; background-color:#348c03; color:#fff; text-align:center; padding:10px; }