-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrsvp.html
More file actions
108 lines (94 loc) · 4.41 KB
/
rsvp.html
File metadata and controls
108 lines (94 loc) · 4.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RSVP - Sean & Emily's Wedding</title>
<meta name="description" content="RSVP to Sean and Emily's wedding celebration.">
<!-- Open Graph Tags for Social Media Sharing -->
<meta property="og:title" content="RSVP - Sean & Emily's Wedding">
<meta property="og:description" content="RSVP to Sean and Emily's wedding celebration.">
<meta property="og:image" content="https://www.thedapperfoxes.com/images/Wedding%20Website/IMG_4274~3.JPG">
<meta property="og:url" content="https://www.thedapperfoxes.com/rsvp.html">
<meta property="og:type" content="website">
<!-- Favicon -->
<link rel="icon" href="foxes-favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="foxes-favicon.ico" type="image/x-icon">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container header__container">
<a href="index.html" class="header__logo">S & E</a>
<nav class="nav">
<button class="nav__toggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="poll.html" class="nav__link">Location Poll</a>
</li>
<li class="nav__item">
<a href="photos.html" class="nav__link">Photos</a>
</li>
<li class="nav__item">
<a href="events.html" class="nav__link">Events</a>
</li>
<li class="nav__item">
<a href="rsvp.html" class="nav__link nav__link--active">RSVP</a>
</li>
<li class="nav__item">
<a href="registry.html" class="nav__link">Registry</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1 class="hero__title">RSVP</h1>
<p class="hero__subtitle">Let us know if you'll be joining our celebration</p>
</div>
</section>
<!-- Coming Soon Section -->
<section class="section">
<div class="container">
<h2 class="section__title">Coming Soon</h2>
<div class="card">
<p>We're currently finalizing our wedding details and will be opening our RSVP system soon. Once we've confirmed our wedding date and location, you'll be able to:</p>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Confirm your attendance</li>
<li>Let us know how many guests will be joining you</li>
<li>Share any dietary restrictions or special needs</li>
<li>Send us a personal message</li>
</ul>
<p>We're using Google Forms to make the RSVP process as simple as possible. Please check back once we've finalized our wedding details!</p>
<div style="text-align: center; margin-top: var(--spacing-lg);">
<a href="index.html" class="btn btn--primary">Return to Home</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p class="footer__text">Sean & Emily's Wedding</p>
<p>© 2025 DapperFoxes. All rights reserved.</p>
</div>
</footer>
<!-- Scripts -->
<script src="js/main.js"></script>
</body>
</html>