event.html (1804B) [raw]
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="viewport" content="width=device-width,initial-scale=1"> 6 <link rel="stylesheet" href="/style.css"> 7 <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> 8 <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> 9 <title>Alex & Jennie's Wedding</title> 10 </head> 11 12 <body> 13 <h1 class="index-title">Alex <small>&</small> Jennie</h1> 14 <p class="subtitle">Tie the Knot</p> 15 <nav> 16 <a href="/">Home</a> 17 <a href="/story.html">Our Story</a> 18 <a href="/event.html">Event</a> 19 <a href="/travel.html">Travel</a> 20 <a href="/registry.html">Registry</a> 21 </nav> 22 <h2>Wedding Day Events</h2> 23 <p> 24 All festivities will take place at 25 the <a href="https://www.endicottestate.com/">Endicott Estate</a> 26 in Dedham, MA. See <a href="/travel.html">Travel</a> for more 27 information. 28 </p> 29 <div class="event-schedule"> 30 <h3>Ceremony</h3> 31 <p class="event-time"><em>4:30 - 5:00pm</em></p> 32 33 </div> 34 <p> 35 We tie the knot and say our vows! Weather pending it will take 36 place on the Endicott lawn. 37 </p> 38 <div class="event-schedule"> 39 <h3>Cocktail Hour</h3> 40 <p class="event-time"><em>5:00 - 6:00pm</em></p> 41 </div> 42 <p> 43 Grab a drink, catch up with old friends, and make some new 44 ones before dinner. 45 </p> 46 <div class="event-schedule"> 47 <h3>Reception</h3> 48 <p class="event-time"><em>6:00 - 10:00pm</em></p> 49 50 </div> 51 <p> 52 There will be a plated dinner inside followed 53 by an evening of dancing! 54 </p> 55 <footer>Copyright 2022, Alex Karle (<a href="license.html">License</a>)</footer> 56 </body> 57 </html>