-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (134 loc) · 5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/ab84100d84.js" crossorigin="anonymous"></script>
<title>Olivia et Daniel</title>
</head>
<body>
<header class="bgrose">
<div id="header">
<a href="#">
<img src="img/icone.png" alt="icone">
</a>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<a class="quote" href="#">Get a quote</a>
</div>
</header>
<main>
<section id="section1" class="bgrose">
<div class="container">
<article>
<h1>Elevate Your Wedding with Our Expertise</h1>
<p>Our team of experienced wedding planners will work with you to create the wedding of your dreams,
from start to finish.</p>
<a class="started" href="#">Get started</a>
</article>
<div class="img">
<img class="img2" src="img/img2.jpg" alt="img">
<img src="img/img1.jpg" alt="img">
</div>
</div>
</section>
<section id="section2">
<div class="container">
<h2>Our Services</h2>
<p>We offer a wide range of wedding planning services to make your special day unforgettable.</p>
<div>
<article>
<i class="fa-regular fa-calendar"></i>
<h3>Event Planning</h3>
<p>From venue selection to timeline management, we handle every aspect of your wedding planning.
</p>
</article>
<article>
<i class="fa-solid fa-palette"></i>
<h3>Design & Decor</h3>
<p>Our team of designers will create a visually stunning and cohesive look for your wedding.</p>
</article>
<article>
<i class="fa-solid fa-microphone"></i>
<h3>Vendor Management</h3>
<p>We’ll handle all the vendor coordination, from catering to entertainment, to ensure a
seamless event.</p>
</article>
</div>
</div>
</section>
<section id="section3">
<div class="container">
<h2>Our Portfolio</h2>
<p class="p">Take a look at some of the beautiful weddings we’ve planned.</p>
<div>
<a href="#">
<article>
<img src="img/img1.jpg" alt="img">
<div>
<h3>Elegant Garden Wedding</h3>
<p>A beautiful outdoor wedding in a lush garden setting.</p>
</div>
</article>
</a>
<a href="#">
<article>
<img src="img/img1.jpg" alt="img">
<div>
<h3>Rustic Barn Wedding</h3>
<p>Buttery and delicious</p>
</div>
</article>
</a>
<a href="#">
<article>
<img src="img/img1.jpg" alt="img">
<div>
<h3>Glamorous City Wedding</h3>
<p>A charming wedding in a cozy barn setting.</p>
</div>
</article>
</a>
</div>
</div>
</section>
<section id="section4">
<div class="container">
<h2>Get in touch</h2>
<p>Get in touch with us to start planning your dream wedding.</p>
<div>
<img src="img/img1.jpg" alt="img">
<img src="img/img3.jpg" alt="img">
<img src="img/img2.jpg" alt="img">
</div>
<form action="">
<input class="name" type="text" placeholder="Name">
<input class="email" type="text" placeholder="Email">
<textarea name="message" id="message" placeholder="Message"></textarea>
<button>Submit</button>
</form>
</div>
</section>
</main>
<footer>
<div id="footer">
<a class="wedding" href="#">Wedding Planner</a>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>