-
Notifications
You must be signed in to change notification settings - Fork 966
Expand file tree
/
Copy pathpopup.html
More file actions
24 lines (20 loc) · 691 Bytes
/
popup.html
File metadata and controls
24 lines (20 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Code Snippet Saver</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h2>Code Snippet Saver</h2>
<input type="text" id="title" placeholder="Title (e.g. Flexbox Center)" required />
<textarea id="code" placeholder="Paste your code here..." rows="6"></textarea>
<button id="save">Save Snippet</button>
<input type="text" id="search" placeholder="Search snippets..." class="search" />
<ul id="snippets"></ul>
</div>
<script src="popup.js"></script>
</body>
</html>