-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
223 lines (206 loc) · 6.59 KB
/
Copy pathindex.html
File metadata and controls
223 lines (206 loc) · 6.59 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beautiful Bouquet</title>
<style>
.row {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}
/* Create two equal columns that sits next to each other */
.column {
flex: 50%;
padding: 0 40px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
}
html, body {
height: 100%;
margin: 0;
overflow-y: auto; /* Enables vertical scrolling */
}
body {
font-family: Arial, sans-serif;
background-color: #f0fff0;
color: #2e8b57;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start; /* Align elements from the top */
padding: 20px;
}
h1 {
margin-bottom: 20px;
font-size: 32px;
}
/* Bouquet Container */
.bouquet-container {
position: relative;
width: 300px;
height: 400px;
margin-bottom: 50px; /* Space between flowers and header */
}
.flower {
position: absolute;
width: 100px;
height: 100px;
animation: flowerRise 3s ease-out forwards;
}
.stem {
position: absolute;
width: 10px;
height: 300px;
background-color: #4caf50;
bottom: 0;
left: 45px;
transform-origin: bottom center;
animation: stemGrow 3s ease-out forwards;
}
.petal {
position: absolute;
width: 40px;
height: 40px;
background-color: #ff69b4;
border-radius: 50% 0;
transform-origin: bottom right;
}
.petal:nth-child(1) { transform: rotate(0deg); }
.petal:nth-child(2) { transform: rotate(72deg); }
.petal:nth-child(3) { transform: rotate(144deg); }
.petal:nth-child(4) { transform: rotate(216deg); }
.petal:nth-child(5) { transform: rotate(288deg); }
.center {
position: absolute;
width: 20px;
height: 20px;
background-color: #ffd700;
border-radius: 50%;
top: 30px;
left: 30px;
}
@keyframes flowerRise {
from { transform: translateY(400px); }
to { transform: translateY(0); }
}
@keyframes stemGrow {
from { transform: translateY(400px); }
to { transform: translateY(180px); }
}
/* Header Container */
.header-container {
margin-top: 300px; /* Space between flowers and the header */
text-align: center;
}
/* Float the image to the right */
.header-container img {
width: 200px;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
float: right; /* Floats the image to the right */
margin-left: 20px; /* Adds space between the text and the image */
}
p {
font-size: 18px;
text-align: left;
margin-bottom: 50px; /* Add bottom space to prevent text cutoff */
}
</style>
</head>
<body>
<h1>Happy Birthday Princess</h1>
<!-- Bouquet Container with Flowers -->
<div class="bouquet-container">
<div class="flower" style="left: 0;">
<div class="stem" style="height: 250px;"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="center"></div>
</div>
<div class="flower" style="left: 100px; top: 50px;">
<div class="stem" style="height: 200px;"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="center"></div>
</div>
<div class="flower" style="left: 200px;">
<div class="stem" style="height: 250px;"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="petal"></div>
<div class="center"></div>
</div>
</div>
<!-- Header Container for Image and Text -->
<div class="header-container">
<h2>Why I love you and some favorite memories</h2>
<p>I love you so very much Princess. Here are some funny/favorite photos of mine. You are my favorite person to be around. You give me so much joy and satisfaction. I think one of the real times that I knew I would marry you is when I was thinking about after college, you were there in my brain rent free. Cooking with you, being with our pets, and loving on you is my dream. I believe that whatever issues we run into, we can get through it together. Baby, I really love you and I hope you enjoy this little collage of pictures I found in my camera roll or us/you from over the years. </p>
<!-- Replace the src with the path to your image -->
<div class="row">
<div class="column">
<img src="pictures\on_sholders.jpg">
<img src="pictures\bald.jpg">
<img src="pictures\c_and_z_1.jpg">
<img src="pictures\c_and_z_2.jpg">
<img src="pictures\c_and_z_3.jpg">
<img src="pictures\c_and_z_4.jpg">
<img src="pictures\c_and_z_5.jpg">
<img src="pictures\c_and_cat_2.jpg">
<img src="pictures\c_and_z_6.jpg">
<img src="pictures\c_and_z_7.jpg">
<img src="pictures\c_and_z_8.jpg">
<img src="pictures\c_cat_1.jpg">
<img src="pictures\camila_hot.jpg">
<img src="pictures\five_years.jpg">
<img src="pictures\flipping_off.jpg">
<img src="pictures\food.jpg">
<img src="pictures\MULCH.jpg">
<img src="pictures\party.jpg">
<img src="pictures\sus.jpg">
<img src="pictures\under_bed.jpg">
<img src="pictures\white.jpg">
<img src="pictures\youngersholders.jpeg">
</div>
<!-- <div class="column">
<img src="pictures\c_and_z_6.jpg">
<img src="pictures\c_and_z_7.jpg">
<img src="pictures\c_and_z_8.jpg">
<img src="pictures\c_cat_1.jpg">
<img src="pictures\camila_hot.jpg">
<img src="pictures\five_years.jpg">
</div>
<div class="column">
<img src="pictures\flipping_off.jpg">
<img src="pictures\food.jpg">
<img src="pictures\MULCH.jpg">
<img src="pictures\party.jpg">
<img src="pictures\sus.jpg">
<img src="pictures\under_bed.jpg">
<img src="pictures\white.jpg">
<img src="pictures\youngersholders.jpeg">
</div> -->
<!-- <div class="column">
<img src="underwater.jpg">
<img src="ocean.jpg">
<img src="wedding.jpg">
<img src="mountainskies.jpg">
<img src="rocks.jpg">
<img src="underwater.jpg">
</div> -->
</div>
</div>
</body>
</html>