ammaan commited on
Commit
d8aed13
1 Parent(s): f109e0f

Create static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +24 -0
static/index.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>youtube</title>
8
+ <link rel="stylesheet" href="index.css">
9
+
10
+ </head>
11
+
12
+ <body>
13
+ <h1>YouTube Summary</h1>
14
+ <form id="summaryForm">
15
+ <input type="text" id="youtubeLinkInput" placeholder="Enter YouTube link">
16
+ <button type="submit">Submit</button>
17
+ </form>
18
+ <div id="loader" class="loader"></div>
19
+ <div id="summaryResult"></div>
20
+ <script src="index.js"></script>
21
+
22
+ </body>
23
+
24
+ </html>