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" + } + } +}