mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
* Don't use <div /> as a button Addition to https://github.com/mdn/content/pull/21410 * stick to old styling * Update beastify/popup/choose_beast.html Co-authored-by: Estelle Weyl <estelle@openwebdocs.org> * Update beastify/popup/choose_beast.css Co-authored-by: Estelle Weyl <estelle@openwebdocs.org> * fix: check for button type at event listener * fix: align css selectors to changes Co-authored-by: Estelle Weyl <estelle@openwebdocs.org>
23 lines
467 B
HTML
23 lines
467 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="choose_beast.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="popup-content">
|
|
<button>Frog</button>
|
|
<button>Turtle</button>
|
|
<button>Snake</button>
|
|
<button type="reset">Reset</button>
|
|
</div>
|
|
<div id="error-content" class="hidden">
|
|
<p>Can't beastify this web page.</p><p>Try a different page.</p>
|
|
</div>
|
|
<script src="choose_beast.js"></script>
|
|
</body>
|
|
|
|
</html>
|