-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
27 lines (24 loc) · 913 Bytes
/
popup.html
File metadata and controls
27 lines (24 loc) · 913 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
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Screen Recorder</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<div class="first-container">
<div class="rec-container">
<span id="recording-status" style="display: none;"><h2>Grabando...</h2></span>
<button id="start" style="display: block;"><img src="icons/icon16.png" alt="botón de play"></button>
<button id="stop" style="display: block;"><img src="icons/icon128.png" alt="botón de stop"></button>
</div>
</div>
<div class="logo-container">
<img src="icons/icon48.png" alt="logo-extension">
</div>
</div>
<script src="popup.js"></script>
</body>
</html>