-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS Assignment 1.html
More file actions
40 lines (40 loc) · 1.59 KB
/
CSS Assignment 1.html
File metadata and controls
40 lines (40 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Assignment 1</title>
<link rel="stylesheet" href="Css assignment 1 style.css">
</head>
<body style="background-color: wheat; font-family: Georgia, 'Times New Roman', Times, serif; text-align: center;">
<!--Poem Name-->
<h1>Ozymandias</h1>
<!--Poet's name-->
<h3>by Pershey Bysshe Shelly</h3>
<!--Poem-->
<p>
I met a traveller from antique land<br>
Who said-"Two vast trunkless legs of stone<br>
Stand in the desert. . . . Near them, on the sand,<br>
Half sunk a shattered visage lies, whose frown,<br>
And wrinkled lip, and sneer of cold command,<br>
Tell that its sculptor well those passions read<br>
Which yet survive, stamped on these lifeless things,<br>
The hand that mockesd them, and the heart that fed;<br>
And on the pedestal, these words appear:<br>
My name is <span>Ozymandias</span>, King of Kings;<br>
Look on my Works, ye Mighty, and despair!<br>
Nothing beside remains. Round the decay<br>
Of that collosal Wreck, boundless and bare<br>
The lone and level sands stretch far away."<br>
</p>
<hr>
<h4>Read more about poem on
<a href="https://en.wikipedia.org/wiki/Ozymandias">Wikipedia</a>
</h4>
<textarea rows="3" cols="30" placeholder="Leave your comment here..."></textarea>
<br>
<button>Comment</button>
</body>
</html>