mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-16 16:42:00 -04:00
21 lines
389 B
HTML
Executable File
21 lines
389 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>This is the popup window. It only calls <code>window.open()</code></p>
|
|
<p>Click the button to open a popup.</p>
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
<script>
|
|
function myFunction() {
|
|
window.open("popup.html");
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|