-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1021 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>YouTube Analysis</title>
</head>
<body>
<h1>Margam Farms YouTube Channel Analysis</h1>
<button id="downloadExcel" class="download-button">Download as Excel</button>
<br /><br />
<strong>Subscribers Count: <span id="subscriberCount"></span></strong>
<div class="loader" id="loader"></div>
<table class="table" id="videoTable">
<thead>
<tr>
<th>Title</th>
<th>Published At</th>
<th>Views</th>
<th>Likes</th>
<th>Avg View Duration</th>
<th>Comments</th>
</tr>
</thead>
<tbody id="videoData"></tbody>
</table>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/xlsx@0.16.9/dist/xlsx.full.min.js"></script>
</body>
</html>