mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 22:38:31 +02:00
28 lines
495 B
HTML
28 lines
495 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="quicknote.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="outer-wrapper">
|
|
<div class="new-note">
|
|
<input type="text">
|
|
<textarea></textarea>
|
|
<button class="clear">Clear notes</button>
|
|
<button class="add">Add note</button>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
|
|
<div class="note-container">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script src="quicknote.js"></script>
|
|
</body>
|
|
|
|
</html>
|