-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (87 loc) · 4.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="styles.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Crete+Round' rel="stylesheet">
<title>Adiko Agency</title>
</head>
<body>
<header>
<div class="wrapper">
<h1>Adiko Agency<span class="orange">.</span></h1>
<nav>
<ul>
<li><a href="#main-image">Home</a></li>
<li><a href="#steps">Destinations</a></li>
<li><a href="#possibilities">Circuits</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="main-image">
<div class="wrapper">
<h2>Plan your<br><strong>tailor-made trip</strong></h2>
<a href="#" class="button-1">Click Here!</a>
</div>
</section>
<section id="steps">
<div class="wrapper">
<ul>
<li id="step-1">
<h4>Plan</h4>
<p>Entrust us your dreams of escape: with family or friends, we will find the formula that will meet your expectations.</p>
</li>
<li id="step-2">
<h4>Organize</h4>
<p>Benefit from the expertise of our specialists of each destination, they accompany you in the realization of your trip.</p>
</li>
<li id="step-3">
<h4>Travel</h4>
<p>We take care of your safety and ensure your full serenity throughout your trip.</p>
</li>
<div class="clear"></div>
</ul>
</div>
</section>
<section id="possibilities">
<div class="wrapper">
<article style="background-image: url(images/article-image-1.jpg);">
<div class="overlay">
<h4>Go with your family!</h4>
<p><small>Give the best to those you love and share fabulous moments!</small></p>
<a href="#" class="button-2">More Info</a>
</div>
</article>
<article style="background-image: url(images/article-image-2.jpg);">
<div class="overlay">
<h4>Want to escape!?</h4>
<p><small>Sometimes a little escape would be welcome and would do the greatest good!</small></p>
<a href="#" class="button-2">More Info</a>
</div>
</article>
<div class="clear"></div>
</div>
</section>
<section id="contact">
<div class="wrapper">
<h3>Contact-us</h3>
<p>At Adiko Agency we know that traveling is a human adventure but also an important financial commitment for you. That's why we make it a point to honor each of your expectations to help you in the preparation of your stay, tour or tailor-made trip.</p>
<form>
<label for="name">Name</label>
<input type="text" id="name" placeholder="Your Name">
<label for="email">Email</label>
<input type="text" id="email" placeholder="Your email">
<input type="submit" value="OK" class="button-3">
</form>
</div>
</section>
<footer>
<div class="wrapper">
<h1>Adiko Agency<span class="orange">.</span></h1>
<div class="copyright">Copyright © 2019. All rights reserved.</div>
</div>
</footer>
</body>
</html>