-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass11.html
36 lines (34 loc) · 1.55 KB
/
class11.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Columbia University (Python) - Class 11</title>
<!-- OWN CSS FILES-->
<link rel="stylesheet" href="style.css" type="text/css" />
<!-- END OWN CSS FILES-->
</head>
<body>
<a href = "index.html"><img class = "logo" src = "Screen_Shot_2024-02-18_at_4.20.38_PM-removebg-preview.png"></a>
<h1>Columbia University (Python) - Class 11</h1>
<li><a href = "C11LectureNotes.html">Class 11 Lecture Notes</a></li>
<li><select style = "border-width: 4px; border-color: white;border-radius: 10px;" class = "txtfileslist" id = "txtfileslist" onchange="dropdownMenu ()">
<option class = "txtfiles" value = "">Select TXT File</option>
<option class = "txtfiles" value = "file.txt">file.txt</option>
<option class = "txtfiles" value = "filetoread.txt">filetoread.txt</option>
<option class = "txtfiles" value = "newfile.html">newfile.txt</option>
<option class = "txtfiles" value = "secondnewfile.txt">secondnewfile.txt</option>
<option class = "txtfiles" value = "somestudents.txt">somestudents.txt</option>
<option class = "txtfiles" value = "test.txt">test.txt</option>
</select></li>
</body>
<script>
function dropdownMenu () {
var dropdown = document.getElementById ("txtfileslist");
var selectedOption = dropdown.options [dropdown.selectedIndex].value;
if (selectedOption) {
window.location = selectedOption.value;
}
}
</script>
</html>