-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (64 loc) · 1.85 KB
/
index.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
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arlubo's Wedding</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="background-squares">
<div class="square"></div>
<div class="square"></div>
</div>
<header>
<h1>Arlubo's Wedding</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#ceremony">Ceremony</a></li>
<li><a href="#reception">Reception</a></li>
<li><a href="#rsvp">RSVP</a></li>
</ul>
</nav>
</header>
<div class="video">
<video width="320" height="240" controls>
<source src="video.mp4" type="video/mp4">
</video>
</div>
<img src="pic1.jpg" class="pic pic1">
<section id="hero">
<h2>Welcome to Our Special Day</h2>
<p>Join us for a beautiful celebration by the beach.</p>
</section>
<img src="pic2.jpg" class="pic pic2">
<section id="about">
<h2>About Our Wedding</h2>
<p>Experience elegance and romance by the ocean.</p>
</section>
<img src="pic3.jpg" class="pic pic3">
<section id="ceremony">
<h2>Wedding Ceremony</h2>
<p>Held at a breathtaking beachside venue.</p>
</section>
<img src="pic4.jpg" class="pic pic4">
<section id="reception">
<h2>Wedding Reception</h2>
<p>A cozy and stylish evening celebration.</p>
</section>
<img src="pic5.jpg" class="pic pic5">
<section id="rsvp">
<h2>RSVP</h2>
<p>We can't wait to celebrate with you! Let us know if you can make it.</p>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<button type="submit">Confirm Attendance</button>
</form>
</section>
<footer>
<p>© 2025 Arlubo's Wedding. All rights reserved.</p>
</footer>
</body>
</html>