-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweddings.html
137 lines (125 loc) · 5.05 KB
/
weddings.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wild Atlantic Wedding</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon2.ico">
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
<style>
.main-mypage{
background-image: url("extrasPage.jpg");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<!-- sticky header with logo, navbar and login -->
<header id="stickyNavbar">
<div class="header-mypage">
<div><img id="header-logo" src="MicrosoftTeams-image.png"></div>
<div id="header-navbar">
<ul id="navbar-menu">
<li><a href="index.html">Home</a></li>
<li><a href="aboutUs.html">About us</a></li>
<li><a href="venues.html">Venues</a></li>
<li><a href="weddings.html" style="text-decoration: underline;">Extras</a></li>
<li><a href="book.html">Book</a></li>
<li><a href="contactUs.html">Contact us</a></li>
</ul>
</div>
<div class="button-div"><button type="button" class="button-login" onclick="showLogin();">Couple login</button></div>
<br>
<div></div>
<!-- login form -->
<div class="container-form">
<form id="login-form" onsubmit="event.preventDefault(); validateForm();">
<fieldset id="show-login" style="display: none;">
<legend class="legend-login">Login</legend>
<label for="username">Username:</label><br>
<input type="text" id="username" name="username"><br>
<br>
<label for="pwd">Password:</label><br>
<input type="password" id="password" name="password">
<br><br>
<div class="checkbox">
<label><input type="checkbox" name="remember"> Remember me</label>
</div>
<br>
<input type="submit" id="submit" value="Submit">
</fieldset>
</form>
</div>
</div>
</header>
<main>
<div class="main-mypage">
<div id="">
</div>
<!--new code for extras layout-->
<div class="extras">
<div class="extrasDiv">
<h2 class="venueTitle" onclick="showOption1()" > Catering ▼</h2>
<p class="show-detail1">
<img class="extraImages" src="catering.jpeg" alt="Catering">
We can provide catering for up to 300 people. We offer packages that include appetisers, mains and deserts. We also offer full cake packages along with specific design needs tailered for you. Full bar can be supplied as an etxra including champage or procesco receptions on arrival.
</p>
</div>
<div class ="extrasDiv">
<h2 class="venueTitle" onclick="showOption2()">Decorations ▼</h2>
<p class="show-detail2">
<img class="extraImages" src="decorations.jpeg" alt="Decorations">
To make your dream day even more beauitful we offer a full decoration package that can be completely tailered to your own style and taste! We will transform any function room into a place of awe and beauty and make thos photographs even more special!
</p>
</div>
<div class="extrasDiv">
<h2 class="venueTitle" onclick="showOption3()"> Church Service ▼</h2>
<p class="show-detail3">
<img class="extraImages" src="service.jpeg" alt="Church Service">
Wild Atlantic Weddings also offer as wedding service as an extra. This can be a civil or religious cermony depending on your wishes. This can as small or big as required depending on your chosen venue.
</p>
</div>
<div class="extrasDiv">
<h2 class="venueTitle" onclick="showOption4()"> Music & Entertainment ▼</h2>
<p class="show-detail4">
<img class="extraImages" src="jazzBand.jpg" alt="Jazz Band">
Wether it's a DJ, a jazz band or an orcherstra or maybe even a comedian or a magician, we have a vast range of options to choose from which will finish your night off in style!
</p>
</div>
<div class="extrasDiv">
<h2 class="venueTitle" onclick="showOption5()"> Photography ▼</h2>
<p class="show-detail5">
<img class="extraImages" src="photographerWed.jpg" alt="Photographer">
Here at Wild Atlantic Weddings we pride ourselves in creating the most memorable experience possible for our customers. The most memorable moments should be captured in time and to do so we supply photographers of the highest quality to capture all the moments of your special day.
</p>
</div>
</div><!--end of new code-->
</div>
</main>
<!-- footer -->
<footer class="footer">
<div class="footer-contact">
<p>Kildare, Ireland </p>
<ul class="footer__contacts">
<li>
<a>Tel: +353 81828384</a>
</li>
<li>|</li>
<li>
<a>Fax: +353 81828384</a>
</li>
<li>|</li>
<li>
<a>Email: WildAtlanticWeddings@info.ie</a>
</li>
</ul>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</body>
</html>