24 lines
374 B
HTML
24 lines
374 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
<button id="newtab">Open canvas</button>
|
|
<button id="replacer">Load page</button>
|
|
<p id="output"></p>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
<style>
|
|
html {
|
|
background: darkolivegreen;
|
|
color: azure;
|
|
}
|
|
body {
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|
|
</style>
|
|
</html>
|