mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-16 16:42:00 -04:00
20 lines
350 B
HTML
Executable File
20 lines
350 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>Click the button to open a popup.</p>
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
<script>
|
|
function myFunction() {
|
|
window.open("popup.html", "_blank", "width=600, height=500");
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|