From 566dc95b82df119d191a14885169a9b35f902ba4 Mon Sep 17 00:00:00 2001 From: Sai Ganesh Reddy Buthukuri Date: Mon, 2 Aug 2021 22:45:52 +0530 Subject: [PATCH] Add files via upload --- SoftwareEngineering.html | 92 ++++++++++++++++++++++++++++++++++++++++ index.html | 50 +++++++++++----------- js/search.js | 17 ++++++++ 3 files changed, 133 insertions(+), 26 deletions(-) create mode 100644 SoftwareEngineering.html create mode 100644 js/search.js diff --git a/SoftwareEngineering.html b/SoftwareEngineering.html new file mode 100644 index 0000000..bc2c06b --- /dev/null +++ b/SoftwareEngineering.html @@ -0,0 +1,92 @@ + + + + + + + + + OpenEducation | Software Engineering + + + +

List of Courses

+
+ +
+ + + + diff --git a/index.html b/index.html index efed584..ad100ff 100644 --- a/index.html +++ b/index.html @@ -13,54 +13,54 @@ logo

OpenEducation

- +

List of Courses

-
- + diff --git a/js/search.js b/js/search.js new file mode 100644 index 0000000..8abbf8a --- /dev/null +++ b/js/search.js @@ -0,0 +1,17 @@ +function mySearch() { + var input,filter,ul,li,a,i,textValue + input=document.getElementById("myInput") + filter=input.value.toUpperCase() + ul=document.getElementById("myUL") + li=ul.getElementsByTagName("li") + + for(i=0;i-1){ + li[i].style.display="" + }else{ + li[i].style.display="none" + } + } +}