From 1f1bca5ad48244aec0d4851cceff2021ff1c6399 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 6 Nov 2022 11:30:50 -0500 Subject: [PATCH] Add most of the content! Still requires a good bit of copy editing and the RSVP form, but I think it's coming together :) --- acadia.jpg | Bin 0 -> 152574 bytes engagement.jpg | Bin 0 -> 111765 bytes event.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 22 +++++++++++++++++++++- registry.html | 32 ++++++++++++++++++++++++++++++++ rsvp.html | 23 +++++++++++++++++++++++ story.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ style.css | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- travel.html | 40 ++++++++++++++++++++++++++++++++++++++++ 9 files changed, 280 insertions(+), 6 deletions(-) create mode 100644 acadia.jpg create mode 100644 engagement.jpg create mode 100644 event.html create mode 100644 registry.html create mode 100644 rsvp.html create mode 100644 story.html create mode 100644 travel.html diff --git a/acadia.jpg b/acadia.jpg new file mode 100644 index 0000000..cb7204e Binary files /dev/null and b/acadia.jpg differ diff --git a/engagement.jpg b/engagement.jpg new file mode 100644 index 0000000..2c5ea98 Binary files /dev/null and b/engagement.jpg differ diff --git a/event.html b/event.html new file mode 100644 index 0000000..5f9ab86 --- /dev/null +++ b/event.html @@ -0,0 +1,55 @@ + + + + + + + Alex & Jennie's Wedding + + + +

Alex & Jennie

+ +

Wedding Day Events

+

+ All festivities will take place at + the Endicott Estate + in Dedham, MA. See Travel for more + information. +

+
+

Ceremony

+

4:30 - 5:00pm

+ +
+

+ We tie the knot and say our vows! Weather pending on the + Endicott lawn. +

+
+

Cocktail Hour

+

5:00 - 6:00pm

+
+

+ Grab a drink, catch up with old friends, and make some new + ones before dinner. +

+
+

Reception

+

6:00 - 10:00pm

+ +
+

+ There will be a plated dinner inside (please let us know your + preference on the RSVP form) followed + by an evening of dancing! +

+ + diff --git a/index.html b/index.html index 91a769b..9247d82 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,26 @@ - Hello World +

Alex & Jennie

+ + Alex and Jennie in Acadia + +

+ Please join us for our wedding celebration on +

+

+ September 9, 2023 +

+

+ 307 days until the big day! +

diff --git a/registry.html b/registry.html new file mode 100644 index 0000000..4663d76 --- /dev/null +++ b/registry.html @@ -0,0 +1,32 @@ + + + + + + + Alex & Jennie's Wedding + + + +

Alex & Jennie

+ +

Gift Registry

+

+ The only gift we ask for is your presence on our wedding + day—having our friends and family travel to spend the day with + us is more than enough! That said, if you feel strongly that + you'd like to buy us a gift, we put together a + + wedding registry at Zola + . +

+

Seriously, no pressure!

+ + diff --git a/rsvp.html b/rsvp.html new file mode 100644 index 0000000..e30fd09 --- /dev/null +++ b/rsvp.html @@ -0,0 +1,23 @@ + + + + + + + Alex & Jennie's Wedding + + + +

Alex & Jennie

+ +

RSVP

+

Check back soon for a form to fill out!

+ + diff --git a/story.html b/story.html new file mode 100644 index 0000000..ddfc28f --- /dev/null +++ b/story.html @@ -0,0 +1,46 @@ + + + + + + + Alex & Jennie's Wedding + + + +

Alex & Jennie

+ +

Our Story

+

+ Alex and Jennie met in January 2017 at UMass Amherst through a + mutual friend (thanks Rachana!) at a party, but they weren't sure + if they'd see each other again. Fortunately, Rachana saw the + potential and insisted on a group date later that week. Phone + numbers were exchanged and just a day or so later they went on + their first date in a snowstorm at the Frank dining commons. The + rest is history! +

+

+ After graduation they moved to Natick, MA, and as soon as a + landlord allowed it they adopted two kittens, Pulp and Meeks. + 5 years, 4 jobs, 2 appartments, and 1 pandemic later, they're + still there, supporting each other. +

+

+ After many trips together that left the family guessing if "he'd + finally ask the question", Alex proposed to Jennie on August 20, + 2022 on top of Franconia Ridge in the White Mountains. It was the + exact spot they had hoped to be 4 years ago on a trip that they + ended short due to bears, a heat wave, and blisters. Back years + later and stronger than ever, she said yes! +

+ Alex Proposes to Jennie + + diff --git a/style.css b/style.css index adc1f09..ebba412 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,66 @@ /* https://www.swyx.io/css-100-bytes */ html { - max-width: 70ch; - padding: 3em 1em; - margin: auto; - line-height: 1.75; - font-size: 1.25em; + max-width: 70ch; + padding: 3em 1em; + margin: auto; + line-height: 1.75; + font-size: 1.25em; + font-family: serif; + background-color: #fffff5; +} + +.index-joinus { + text-align: center; +} + +.index-title { + text-align: center; + font-size: 2em; +} + +.index-date { + text-align: center; + font-size: 1.4em; +} + +.index-daystill { + text-align: center; + font-size: .8em; +} + +nav { + text-align: center; + margin-bottom: 16px; +} + + +nav a { + text-align: center; + text-decoration: none; + color: black; + padding: 2%; +} + +nav a:hover { + text-decoration: underline; +} + +p.address { + padding-left: 36px; +} + +p.event-time { + margin-top: 20px; + margin-bottom: 20px; +} + +div.event-schedule { + display: flex; + justify-content: space-between; +} + +div.event-schedule h3 { + display: inline; + margin-top: 20px; + margin-bottom: 20px; } diff --git a/travel.html b/travel.html new file mode 100644 index 0000000..6de8b9a --- /dev/null +++ b/travel.html @@ -0,0 +1,40 @@ + + + + + + + Alex & Jennie's Wedding + + + +

Alex & Jennie

+ +

Travel

+

Wedding Venue

+

+ The ceremony and reception will both be at + the Endicott Estate + in Dedham, MA: +

+

+ Endicott Estate
+ 656 East Street
+ Dedham, Massachusetts 02026 +

+

+ + Google Maps Directions. + +

+

Hotel Recommendations

+

Coming Soon

+ + -- libgit2 1.1.1