Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": [
"development"
],
"hints": {
"axe/parsing": [
"default",
{
"marquee": "off"
}
]
}
}
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

const button = document.querySelector("button")
button.addEventListener('click', () => {
alert("Yay, I love puppies")
alert("Yay, I love snakes")
})
4 changes: 4 additions & 0 deletions extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
button {
font-size: larger;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="container">

<marquee behavior="" direction="">
<h1>Welcome to Github and Friends</h1>
<h1>Welcome to Kevin's Codelab</h1>
</marquee>

<button id="button">Click Me</button>
Expand Down
1 change: 1 addition & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ body {
margin: 0;
padding: 0;
font-family: sans-serif;
background-color: azure;
}

.container {
Expand Down