Skip to content

Instantly share code, notes, and snippets.

@bogoreh
Created March 11, 2021 12:15
Show Gist options
  • Select an option

  • Save bogoreh/df78162fe91b27a7735c36f03283eb34 to your computer and use it in GitHub Desktop.

Select an option

Save bogoreh/df78162fe91b27a7735c36f03283eb34 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: The inside story</title>
</head>
<body>
<h1>The inside story: Why is Oh Noes so sad?</h1>
<p>We had an exclusive interview with Oh Noes guy, the error buddy, and we asked him the question that all of you were wondering about: "Why do you always seem so sad?" Here's his shocking reply:</p>
<p id="ohnoes-says"></p>
<p>We asked Winston for comment, and this is all he would say about it:</p>
<p id="winston-says"></p>
<script>
var ohnoesSays = document.getElementById("ohnoes-says");
var winstonSays = document.getElementById("winston-says");
ohnoesSays.innerHTML = "I don't like mistakes, they do me <em>unhappy.</em>";
winstonSays.textContent = "This guy is very vulnerable.";
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment