Skip to content

Commit 86ed90e

Browse files
authored
chores
1 parent c28c745 commit 86ed90e

1 file changed

Lines changed: 109 additions & 0 deletions

File tree

random/index.html

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Free Classic Books (PDF)</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
max-width: 700px;
11+
margin: 40px auto;
12+
padding: 0 16px;
13+
line-height: 1.6;
14+
background-color: #f9f9f9;
15+
}
16+
17+
h1 {
18+
text-align: center;
19+
}
20+
21+
ul {
22+
list-style: none;
23+
padding: 0;
24+
}
25+
26+
li {
27+
background: #fff;
28+
margin-bottom: 12px;
29+
padding: 16px;
30+
border-radius: 6px;
31+
box-shadow: 0 2px 4px rgba(0,0,0,0.08);
32+
display: flex;
33+
justify-content: space-between;
34+
align-items: center;
35+
}
36+
37+
a.download {
38+
text-decoration: none;
39+
background: #007bff;
40+
color: #fff;
41+
padding: 8px 12px;
42+
border-radius: 4px;
43+
font-size: 14px;
44+
}
45+
46+
a.download:hover {
47+
background: #0056b3;
48+
}
49+
50+
footer {
51+
text-align: center;
52+
margin-top: 40px;
53+
font-size: 14px;
54+
color: #666;
55+
}
56+
</style>
57+
</head>
58+
<body>
59+
60+
<h1>Free Classic Books (PDF)</h1>
61+
<p>Click the download button to get a free PDF copy of each book.</p>
62+
63+
<ul>
64+
<li>
65+
<span><strong>Dubliners</strong> – James Joyce</span>
66+
<a
67+
class="download"
68+
href="https://www.planetebook.com/free-ebooks/dubliners.pdf"
69+
download
70+
target="_blank"
71+
rel="noopener"
72+
>
73+
Download PDF
74+
</a>
75+
</li>
76+
77+
<li>
78+
<span><strong>The Adventures of Huckleberry Finn</strong> – Mark Twain</span>
79+
<a
80+
class="download"
81+
href="https://www.planetebook.com/free-ebooks/the-adventures-of-huckleberry-finn.pdf"
82+
download
83+
target="_blank"
84+
rel="noopener"
85+
>
86+
Download PDF
87+
</a>
88+
</li>
89+
90+
<li>
91+
<span><strong>Middlemarch</strong> – George Eliot</span>
92+
<a
93+
class="download"
94+
href="https://www.planetebook.com/free-ebooks/middlemarch.pdf"
95+
download
96+
target="_blank"
97+
rel="noopener"
98+
>
99+
Download PDF
100+
</a>
101+
</li>
102+
</ul>
103+
104+
<footer>
105+
<p>All books provided via Planet eBook.</p>
106+
</footer>
107+
108+
</body>
109+
</html>

0 commit comments

Comments
 (0)