-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.3 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- © 2020 Asher Seiling-->
<meta charset="UTF-8">
<title>Tech Lead Video Title generator</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="Head_tag">
<br>
<div class="Head_tag_text">
<h1>
Tech Lead Video title generator
</h1>
<p>
A program you can use to genterate thubmails just like the Tech Lead
</p>
</div>
<br>
</div>
<div class="Form">
<center>
<br>
<br>
<br>
<p>
Input video title
</p>
<br>
<input type="text" placeholder="Input basic video title" id="prefix_text">
<br><br>
<button onclick="generate_title();">Generate!</button>
<br><br>
<div class="the_title_is">
<p id="the_title_is"></p>
</div>
<div class="Output_result">
<br>
<p id="disp_result"></p>
<br>
</div>
</center>
</div>
</body>
</html>