diff --git a/index.html b/index.html index 621dcda..b69dbf0 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ - + @@ -53,6 +53,9 @@

+ + + - \ No newline at end of file + diff --git a/script.js b/script.js new file mode 100644 index 0000000..9f5893c --- /dev/null +++ b/script.js @@ -0,0 +1,9 @@ +"use strict"; + +$(document).ready(function () { + $('h1').css({"font-size": "100px"}); + $('h4').append("
"); + $('.sad').replaceAll('.happy'); + $('#annoying-popup').replaceWith("Click me to get free stuff!!!!"); + $('li').replaceWith('
  • Replaced Ellipsis
  • '); $('input type="text"').replaceWith('textarea'); +}); \ No newline at end of file