Home
Evolution of The Internet
diff --git a/website_design/html/html.html b/website_design/html/html.html
index 92775d8..38e237b 100644
--- a/website_design/html/html.html
+++ b/website_design/html/html.html
@@ -1,58 +1,90 @@
-
+
+
+
-
-
+
+
Web Design-HTML: Z14IT-Internet Fundamentals
-

-

-
-
-
-
+
+
+
+
+
+
+
Internet Fundamentals
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/website_design/html/html_assets/html.js b/website_design/html/html_assets/html.js
new file mode 100644
index 0000000..08410dd
--- /dev/null
+++ b/website_design/html/html_assets/html.js
@@ -0,0 +1,17 @@
+function search() {
+ var input, filter, ul, li, a, i, txtValue;
+ input = document.getElementById('searchInput');
+ filter = input.value.toUpperCase();
+ ul = document.getElementById("referenceList");
+ li = ul.getElementsByTagName('li');
+
+ for (i = 0; i < li.length; i++) {
+ a = li[i].getElementsByTagName("details")[0];
+ txtValue = a.textContent || a.innerText;
+ if (txtValue.toUpperCase().indexOf(filter) > -1) {
+ li[i].style.display = "";
+ } else {
+ li[i].style.display = "none";
+ }
+ }
+}
\ No newline at end of file