29 lines
642 B
HTML
29 lines
642 B
HTML
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>DOM Events</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<button>click me</button>
|
|
|
|
<div class="popup-wrapper">
|
|
<div class="popup">
|
|
<div class="popup-close">x</div>
|
|
<div class="popup-content">
|
|
<h2>SOMETHING FOR SALE!!!</h2>
|
|
<p>50% off all clothing, don't miss out
|
|
<a href="#">view clothing</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="popup.js">
|
|
</script>
|
|
</body>
|
|
|
|
|
|
</html> |