Skip to content
Open
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
8 changes: 4 additions & 4 deletions web-academy/html-101/exercises/debug-exercise-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<body>
<h1>HTML Debugging: Where are my links?!</h1>
<p>I'm supposed to have three links on this page-- one to Devslopes, one to MDN Web Docs, and one to some super cool code kitty! They're all broken!!!</p>
<a href="https://www.devslopes.com">Dang</a>
<a href="https://www.devslopes.com">Devslopes</a>
<br>
<a herf="https://developer.mozilla.org">Why is this broken??? :(</a>
<a herf="https://developer.mozilla.org">Why is this broken</a>
<br>
<a href="https://hostrider.com/" Help this code kitty link is broken!!!></a>
<a href="https://hostrider.com/">Help this code kitty link is broken!!!</a>
</body>
</html>
</html>