-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
33 lines (29 loc) · 1.06 KB
/
popup.html
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
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chrome Extension</title>
<link rel="stylesheet" href="styles_data.css">
</head>
<body>
<div class="container">
<!-- YouTube Video Title -->
<div id="video-title" class="video-title"></div>
<!-- Tags container style -->
<div class="tags-container">
<div class="tag" id="wholesome">Wholesome</div>
<div class="tag" id="adrenaline">Adrenaline</div>
<div class="tag" id="til">Today I Learned</div>
<div class="tag" id="alt-music">Alt Music</div>
<div class="tag" id="inspiring">Inspiring</div>
<div class="tag" id="brainrot">brainrot</div>
</div>
<!-- Submit button -->
<button id="submit-btn">Submit</button>
<!-- New Button to open Data Page -->
<button id="data-page-btn">View Stored Data</button>
</div>
<script src="popup.js"></script>
</body>
</html>