generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwedding.html
63 lines (60 loc) · 2.61 KB
/
wedding.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="balloon and decor shop for special occasions in Novi Pazar">
<meta name="keywords" content="balloons, decoration, balloonshop, decoration for occasions, Serbia, Novi Pazar">
<link href="assets/css/style.css" rel="stylesheet">
<title>Magic balon decor</title>
</head>
<body>
<header>
<!-- logo and name and navbar-->
<nav>
<div id="wrap">
<img src="assets/images/mbd-logo.webp" alt="logo of the company" id="logo">
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li>
<a href="#" class="active">Decoration</a>
<ul>
<li><a href="birthday.html">Birthday</a></li>
<li><a href="engagment.html">Engagment</a></li>
<li><a href="gender-reveal.html">Gender reveal</a></li>
<li><a href="grand-opening.html">Grand opening</a></li>
<li><a href="wedding.html" class="active">Wedding</a></li>
</ul>
</li>
<li><a href="webshop.html">Webshop</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="picture-example">
<h1>Wedding</h1>
<br>
<img src="assets/images/wedding1.webp" alt="Wedding table decoration example">
<img src="assets/images/wedding2.webp" alt="Guest table decoration example">
</section>
<div id="wedding-info">
<p>
With the planning of your weddings there are a lot of options and we want to make it as personal as possible.
So we don't have a form to fill out. You can contact us thru our phone number and we can decorate your dream wedding
exactly the way you want it.
</p>
</div>
</main>
<footer>
<ul>
<li id="float-left">Contact Us: <i class="fa-solid fa-phone"></i><a href="tel:1234567890">1234567890</a></li>
<li id="float-right"><a href="https://www.instagram.com/magicbalondecor/" target="_blank" rel="noopener"
aria-label="Find us on Instagram (link opens in a new tab)"><i class="fa-brands fa-instagram"></i></a></li>
</ul>
</footer>
<!-- font awesome script-->
<script src="https://kit.fontawesome.com/45c35d510d.js" crossorigin="anonymous"></script>
</body>
</html>