View difference between Paste ID: fPFKrxkU and KwL3r6Ke
SHOW: | | - or go back to the newest paste.
1
<!--
2
HTTP/1.1 200 OK\r\n
3
Content-Type: text/html\r\n
4
\r\n
5
-->
6
<!DOCTYPE html>
7
<html>
8
9
    <head>
10
        <title>Lest We Forget</title>
11
        <style>
12
            html {
13
                background-color:#FFCCCC;
14
            }
15
            h1 {
16
                font-family: 'Open Sans', Century Gothic, Arial, sans-serif;
17
                text-align: center;
18
            }
19
            #poem {
20
                margin-left: 3em;
21
                margin-right: 5em;
22
                
23
                font-family: Garamond, serif;
24
                font-size: 1.2em;
25
                text-align: center;
26
                
27
                border-radius: 1em;
28
                
29
                background-color: #D6A3A8;
30
                
31
            }
32
            #credit {
33
            	font-size: 0.7em;
34
            	text-align:left;
35
            	margin-left: 5em;
36
            }
37
            div {
38
            	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
39
				-webkit-backface-visibility: hidden;
40
				backface-visibility: hidden;
41
				-moz-osx-font-smoothing: grayscale;
42
				overflow: hidden;
43
				-webkit-transition-duration: 0.6s;
44
				transition-duration: 0.6s;
45
				-webkit-transition-property: color, background-color;
46
				transition-property: color, background-color;
47
            }
48
            div:hover {
49
            	background-color: #2098d1;
50
				color: #B50214;
51
            }
52
            
53
        </style>
54
        <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
55
    </head>
56
    <body>
57
        
58
        <h1><b>Ode of Remembrance: An excerpt from the poem For the Fallen. By <i>Lawrance Binyon</i></b>.</h1>
59
60
        <div id="poem">
61-
            <p> &nbsp </p>
61+
            <p></p>
62
       	    <br>They went with songs to the battle, they were young.</br>
63
            <br>Straight of limb, true of eye, steady and aglow.</br>
64
            <br>They were staunch to the end against odds uncounted,</br>
65
            <p>They fell with their faces to the foe.</p>
66
67
            <br>They shall grow not old, as we that are left grow old:</br>
68
            <br>Age shall not weary them, nor the years condemn.</br>
69
            <br>At the going down of the sun and in the morning,</br>
70
            <p>We will remember them.</p>
71-
            <p> &nbsp </p>
71+
            <p></p>
72
        	<p><b>Lest We Forget.</b></p>
73-
            <p> &nbsp </p>
73+
            <p></p>
74
            <p id="credit">Website by Hamish Clark and Weilon Ying.</p>
75
        </div>
76
    </body>
77
</html>