-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (38 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
47 lines (38 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poetry Collection</title>
<link rel="icon" type="image/png" href="/images/favicon2.png">
<style>
body {
font-family: 'Georgia', serif;
background-color: #f9f5f0;
color: #333;
text-align: center;
margin: 0;
padding: 40px;
}
h1 {
color: #6b1e1e;
font-size: 3em;
margin-bottom: 10px;
}
p {
font-size: 1.3em;
margin-bottom: 20px;
color: #555;
}
img {
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<h1>Welcome to my Poetry Collection</h1>
<p>This is a beautiful place where words come alive.</p>
<img src="https://thewisdomdaily.com/wp-content/uploads/2020/04/iStock-614125152.jpg" alt="Poetry Image" width="300">
</body>
</html>