-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoem.html
More file actions
42 lines (31 loc) · 1.28 KB
/
Poem.html
File metadata and controls
42 lines (31 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<title> Poem </title>
</head>
<body>
<h1> Poem in a Table </h1>
<table border="1" width="60%" bgcolor="FCFEBE">
<tr>
<th colspan="3" bgcolor="A2C5F3"> Fire And Ice </th>
</tr>
<tr>
<td colspan="3"> <p align="center"> Some say the world will end in fire,<br/>
some say in ice. </p>
</td>
</tr>
<tr>
<td width="33%" valign="top"> <p align="top"> From what I've tasted of desire </p>
<p> I hold with those who favor fire. </p>
</td>
<td width="34%" valign="top"> <p> But if had to perish twice, </p> I think I know enough of hate
<p> To say that for destruction ice </p>
<p> Is also great </p>
<p> And would suffice. </p>
<br/> <h4 align="right"> Robert Frost </h4>
</td>
<td width="33%"> <img src="glas fire.jpg" alt="Fire & Ice" title="Fire And Ice" width="100%" height="40%"> </td>
</tr>
</table>
</body>
</html>