-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewsletter.html
109 lines (97 loc) · 2.75 KB
/
newsletter.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Programmers Paradise - Newsletters</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('Logos/background4.jpeg');
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
width: 90%;
max-width: 800px;
background-image: url('Logos/background4.jpeg');
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
text-align: center;
}
h1 {
color: #007bff;
margin-bottom: 20px;
}
.newsletter-list {
list-style: none;
padding: 0;
margin: 0;
}
.newsletter-item {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
margin-bottom: 15px;
padding: 15px;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
transition: transform 0.3s;
}
.newsletter-item:hover {
transform: translateY(-5px);
}
.newsletter-item h2 {
margin: 0;
color: #333;
}
.newsletter-item a {
background-color: #007bff;
color: white;
padding: 10px 15px;
text-decoration: none;
border-radius: 5px;
}
.newsletter-item a:hover {
background-color: #0056b3;
}
@media screen and (max-width: 768px) {
.container {
padding: 10px;
}
.newsletter-item {
flex-direction: column;
align-items: flex-start;
}
.newsletter-item a {
margin-top: 10px;
width: 100%;
text-align: center;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Newsletter</h1>
<ul class="newsletter-list">
<li class="newsletter-item">
<h2>June 2024</h2>
<a href="docs/Newsletter_June.pdf" download>Download</a>
</li>
<li class="newsletter-item">
<h2>May 2024</h2>
<a href="docs/Newsletter_May.pdf" download>Download</a>
</li>
<!-- Add more newsletter items as needed -->
</ul>
</div>
</body>
</html>