-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLine_Break.html
More file actions
49 lines (49 loc) · 1.67 KB
/
Line_Break.html
File metadata and controls
49 lines (49 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>Road Not Taken Challenge</title>
<meta charset="utf-8">
</head>
<body>
<h1>The Road Not Taken<br>
<cite>by Robert Frost</cite>
</h1>
<!---This section is about the 1st stanza... --->
<section>
<h2>Stanza 1</h2>
<p>Two roads diverged in a <span style="color:yellow;font-weight:bold;background-color:black">yellow</span> wood, <br>
And sorry I could not travel both<br>
And be one traveler, long I stood<br>
And looked down one as far as I could<br>
To where it bent in the undergrowth;</p>
</section>
<!---This section is about the 2nd stanza... --->
<section>
<h2>Stanza 2</h2>
<p>Then took the other, as just as fair,<br>
And having perhaps the better claim,<br>
Because it was grassy and wanted wear;<br>
Though as for that the passing there<br>
Had worn them really about the same,</p>
</section>
<!---This section is about the 3rd stanza... --->
<section>
<h2>Stanza 3</h2>
<p>And both that morning equally lay<br>
In leaves no step had trodden black.<br>
Oh, I kept the first for another day!<br>
Yet knowing how way leads on to way,<br>
I doubted if I should ever come back.</p>
</section>
<!---This section is about the 4th stanza... --->
<section>
<h2>Stanza 4</h2>
<p>I shall be telling this with a sigh<br>
Somewhere ages and ages hence:<br>
Two roads diverged in a wood, and I—<br>
I took the one less traveled by,<br>
And that has made all the difference.</p>
</section>
<p>©opied off of <a href = "https://www.poetryfoundation.org/poems/44272/the-road-not-taken">Poetry Foundation</a> at 3:33 pm EST.</p>
</body>
</html>