-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThe Inner story.html
23 lines (20 loc) · 948 Bytes
/
The Inner story.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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");
ohnoesSays.innerHTML = "<em>I am always <strong>sad</strong> because I am bored</em>"
var winstonSays = document.getElementById("winston-says");
winstonSays.textContent = "that is how Oh Noes is!"
</script>
</body>
</html>