-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgingerbread.html
67 lines (59 loc) · 1.83 KB
/
gingerbread.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Day 5 - Gingerbread Wonders</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #fce4ec, #ffffff);
color: #333;
}
h1 {
text-align: center;
margin-top: 20px;
font-size: 3em;
color: #d81b60;
}
p {
max-width: 700px;
margin: 10px auto;
line-height: 1.6;
font-size: 1.2em;
}
.center {
text-align: center;
}
.btn-link {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
text-decoration: none;
color: #fff;
background-color: #ec407a;
border-radius: 8px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.btn-link:hover {
background-color: #c2185b;
}
</style>
</head>
<body>
<h1>🍭 Day 5 - Gingerbread Wonders 🍭</h1>
<p class="center">Two years ago, in London, some architects collaborated to build bridges, boats, and buildings... in gingerbread! 🎄</p>
<p class="center"> The theme was surprisingly serious: </p>
<p class="center"> <b>Water and how we can protect this vital resource.</b> </p>
<p class="center">
<a href="https://www.dezeen.com/2023/12/14/the-museum-of-architecture-gingerbread-bridges-boats-new-york/"
target="_blank"
class="btn-link">
🌟 Dive into the Museum of Architecture's Gingerbread Showcase on Dezeen 🌟
</a>
</p>
</body>
</html>