-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (154 loc) · 6.37 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!--
Web Design and Client-Side Scripting Project
By Jack Hogan and Elena Bollini
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--Search Engine Optimization Title Name-->
<title>Wild Atlantic Weddings</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Search Engine Optimization Meta Description-->
<meta name="description" content="A wedding supplier and catering for the wild atlantic coast. Wedding venues and services across the west coast of Ireland.">
<link rel="icon" type="image/x-icon" href="images/favicon2.ico">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!--External CSS-->
<link rel="stylesheet" href="styles.css">
<!--External JS-->
<script src="script.js"></script>
<!--background image for each page-->
<style>
.main-mypage{
background-image: url("images/cliffs_2.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">
<!--Logo onclick 'Homepage'-->
<div>
<a href="index.html"><img id="header-logo" src="images/MicrosoftTeams-image.png" alt="Logo"></a>
</div>
<!--Navbar-->
<div id="header-navbar">
<ul id="navbar-menu">
<li><a href="index.html" style="text-decoration: underline;">Home</a></li>
<li><a href="aboutUs.html">About us</a></li>
<li><a href="wedding-venues.html">Venues</a></li>
<li><a href="wedding-extras.html">Extras</a></li>
<li><a href="book-your-wedding.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>
<!--Start of main body-->
<main>
<div class="main-mypage">
<div id="left-side">
</div>
<div>
<!--Logo-->
<img src="images/WildAtlanticWeddings_trans.png" alt="Logo" id="indexLogo">
<h1 style="text-align:center; height:100px">Irelands spectacular Wild Atlantic Way... the perfect place for your wedding day</h1>
<br>
<!-- carousel -->
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel" style="width:100%">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/pexels-trung-nguyen-2959192.jpg" class="d-block w-100" alt="bride&groom">
<div class="carousel-caption d-none d-md-block">
<h5>Sarah & John</h5>
<p>"Thank you for making our wedding perfect!"</p>
</div>
</div>
<div class="carousel-item">
<img src="images/pexels-leah-kelley-540522.jpg" class="d-block w-100" alt="Danielle">
<div class="carousel-caption d-none d-md-block">
<h5>Danielle</h5>
<p>"The romance that we have always dreamt about!"</p>
</div>
</div>
<div class="carousel-item">
<img src="images/pexels-asad-photo-maldives-1024983.jpg" class="d-block w-100" alt="Michael&Dana">
<div class="carousel-caption d-none d-md-block">
<h5>Michael & Dana</h5>
<p>"You realised our magical moment and exceeded our expectations!"</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<div id="right-side">
</div>
</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>
<!--End of footer-->
<!--JavaScript-->
<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>
<!--End of body-->
</body>
</html>