-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (41 loc) · 1.76 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
<!DOCTYPE html>
<html lang ="en">
<head>
<title>MVP</title>
<meta>
<script src="app.js"></script>
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="process.php"></script>
</head>
<body>
<h1> transcript project</h1><hr>
<button onclick="myFunction()"><i class="fa-solid fa-moon"></i></button><br>
<img src="https://i.pinimg.com/originals/20/0c/e9/200ce9b39e8ca13e14c3cb303560e457.jpg" alt="aesthetic image" height="100">
<div class="notes">
<form method="post"><h3>below is a tool to get youtube video text transcript</h3>
<label for="link">video link : </label>
<input type="text" id="link">
<input type="button" value="click" onclick="testResults(this.form)">
</form> <br>
<h3>form connections post get</h3>
<form action="joinedname.html" method="get">
<input type="text" name="firstname" id="firstname">
<input type="text" name="lastname" id="lastname">
<input type="submit" value="join">
</form>
<div id="result"></div><br>
<h3>accordion here</h3>
<span class="accordion">
<details>
<summary>accordion here. click me!</summary>
<div>desciption of above title</div>
</details>
</span><br>
<h3>tooltip overhead</h3>
<div class="tooltip">Hover over me
<span class="tooltiptext">Tooltip text</span>
</div>
</div>
</body>
</html>