-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
60 lines (54 loc) · 1.7 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Youtube Summarizer</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="./img/favicon.ico" type="image/x-icon" />
<script type="module" src="./js/controller.js"></script>
</head>
<body>
<header>
<img src="./img/logo.png" alt="Youtube Summarizer logo" />
</header>
<main>
<div class="heading">
<span><h1>Summarize YouTube videos Instantly!</h1></span>
<span class="red"><h1>Powered by AI</h1></span>
</div>
<div class="search-container">
<form>
<input
type="text"
id="search-input"
placeholder="Paste YouTube video URL here..."
autocomplete="off"
/>
<div class="button-container">
<button id="button1">Summarize in 10 Points</button>
<button id="button2" disabled>In-Depth Summary</button>
</div>
</form>
</div>
<div class="meta-data-container">
<!--
<div id="video-title">Title</div>
<div id="video-thumbnail"><img src="https://i.ytimg.com/vi/9bZkp7q19f0/hqdefault.jpg"></div>
-->
</div>
<div class="summary-container">
<!-- <div class="summary">
<h2>Video Summary:</h2>
<div class="summary-text">Summary</div>
</div> -->
</div>
</main>
<footer>
<a href="https://github.com/UmerrAli/YouTube-Summarizer" target="_blank">
<img src="./img/github.svg" alt="github" />
<span>Github</span>
</a>
</footer>
</body>
</html>