-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 2.08 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Redlands Garden Share</title>
<link href="https://fonts.googleapis.com/css?family=Heebo" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Heebo', sans-serif;
text-align: center; /* Centers text */
height: 100vh; /* Full height of the viewport */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
width: 80%; /* Adjusts the container width */
max-width: 1200px; /* Maximum width */
}
img {
max-width: 100%; /* Makes image responsive */
height: auto;
}
iframe {
border: solid 1px #777;
width: 800px;
height: 600px;
max-width: 100%; /* Ensures responsiveness */
}
</style>
</head>
<body>
<div class="container">
<a href="https://www.facebook.com/groups/redlandsgardenshare">
<img src="redlandsgardenshare.jpeg" alt="Redlands Garden Share">
</a>
<p>
The Redlands Garden Share has been established as a community and resource swap initiative, aimed at fostering self-reliance, sustainability, and community building. By sharing resources such as homegrown produce, seeds, edible plants, and more, we can reduce our waste, decrease dependence on supermarkets and decrease food miles, while also learning new skills and knowledge from your neighbours.
</p>
<p>
Join our <a href="https://www.facebook.com/groups/redlandsgardenshare">Facebook group</a> where we post up events.
</p>
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&ctz=Australia%2FBrisbane&bgcolor=%23ffffff&showTitle=0&showPrint=0&showCalendars=0&mode=AGENDA&src=cmVkbGFuZHNnYXJkZW5zaGFyZUBnbWFpbC5jb20&color=%23039BE5" frameborder="0" scrolling="no"></iframe>
</div>
</body>
</html>