diff --git a/.hintrc b/.hintrc new file mode 100644 index 0000000..6605fe0 --- /dev/null +++ b/.hintrc @@ -0,0 +1,13 @@ +{ + "extends": [ + "development" + ], + "hints": { + "axe/parsing": [ + "default", + { + "marquee": "off" + } + ] + } +} \ No newline at end of file diff --git a/app.js b/app.js index 2e56ded..376f69b 100644 --- a/app.js +++ b/app.js @@ -2,5 +2,5 @@ const button = document.querySelector("button") button.addEventListener('click', () => { - alert("Yay, I love puppies") + alert("Yay, I love snakes") }) \ No newline at end of file diff --git a/extra.css b/extra.css new file mode 100644 index 0000000..0407015 --- /dev/null +++ b/extra.css @@ -0,0 +1,4 @@ +button { + font-size: larger; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} \ No newline at end of file diff --git a/index.html b/index.html index ef49f00..baba725 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@