-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopcional.html
More file actions
186 lines (154 loc) · 6.79 KB
/
Copy pathopcional.html
File metadata and controls
186 lines (154 loc) · 6.79 KB
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
179
180
181
182
183
184
185
186
<section class="place section" id="place">
<h2 class="section__title">Choose Your Place</h2>
<div class="animation">
<!-- <script>
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
const renderer = new THREE.WebGLRenderer();
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );
const geometry = new THREE.BoxGeometry( 1, 1, 1 );
const material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
const cube = new THREE.Mesh( geometry, material );
scene.add( cube );
camera.position.z = 5;
function animate() {
requestAnimationFrame( animate );
cube.rotation.x += 0.01;
cube.rotation.y += 0.01;
renderer.render( scene, camera );
};
animate();
</script> -->
</div>
<div class="place__container container grid">
<!--==================== Cartas 1 ====================-->
<div class="place__card">
<img src="assets/img/place1.jpg" alt="" class="place__img">
<div class="place__content">
<span class="place__rating">
<i class="ri-star-line place__rating-icon"></i>
<span class="place__rating-number">4,8</span>
</span>
<div class="place__data">
<h3 class="place__title">Bali</h3>
<span class="place__subtitle">Indonesia</span>
<span class="place__price">$2499</span>
</div>
</div>
<button class="button button--flex place__button">
<i class="ri-arrow-right-line"></i>
</button>
</div>
<!--==================== PLACES CARD 2 ====================-->
<div class="place__card">
<img src="assets/img/place2.jpg" alt="" class="place__img">
<div class="place__content">
<span class="place__rating">
<i class="ri-star-line place__rating-icon"></i>
<span class="place__rating-number">5,0</span>
</span>
<div class="place__data">
<h3 class="place__title">Bora Bora</h3>
<span class="place__subtitle">Polinesia</span>
<span class="place__price">$1599</span>
</div>
</div>
<button class="button button--flex place__button">
<i class="ri-arrow-right-line"></i>
</button>
</div>
<!--==================== PLACES CARD 3 ====================-->
<div class="place__card">
<img src="assets/img/place3.jpg" alt="" class="place__img">
<div class="place__content">
<span class="place__rating">
<i class="ri-star-line place__rating-icon"></i>
<span class="place__rating-number">4,9</span>
</span>
<div class="place__data">
<h3 class="place__title">Hawaii</h3>
<span class="place__subtitle">EE.UU</span>
<span class="place__price">$3499</span>
</div>
</div>
<button class="button button--flex place__button">
<i class="ri-arrow-right-line"></i>
</button>
</div>
<!--==================== PLACES CARD 4 ====================-->
<div class="place__card">
<img src="assets/img/place4.jpg" alt="" class="place__img">
<div class="place__content">
<span class="place__rating">
<i class="ri-star-line place__rating-icon"></i>
<span class="place__rating-number">4,8</span>
</span>
<div class="place__data">
<h3 class="place__title">Whitehaven</h3>
<span class="place__subtitle">Australia</span>
<span class="place__price">$2499</span>
</div>
</div>
<button class="button button--flex place__button">
<i class="ri-arrow-right-line"></i>
</button>
</div>
<!--==================== PLACES CARD 5 ====================-->
<div class="place__card">
<img src="assets/img/place5.jpg" alt="" class="place__img">
<div class="place__content">
<span class="place__rating">
<i class="ri-star-line place__rating-icon"></i>
<span class="place__rating-number">4,8</span>
</span>
<div class="place__data">
<h3 class="place__title">Hvar</h3>
<span class="place__subtitle">Croacia</span>
<span class="place__price">$1999</span>
</div>
</div>
<button class="button button--flex place__button">
<i class="ri-arrow-right-line"></i>
</button>
</div>
</div>
</section>
<!--==================== SUBSCRIBE ====================-->
<section class="subscribe section">
<div class="subscribe__bg">
<div class="subscribe__container container">
<h2 class="section__title subscribe__title">Subscribe Our <br> Newsletter</h2>
<p class="subscribe__description">Subscribe to our newsletter and get a
special 30% discount.
</p>
<form action="" class="subscribe__form">
<input type="text" placeholder="Enter email" class="subscribe__input">
<button class="button">
Subscribe
</button>
</form>
</div>
</div>
</section>
<!--==================== SPONSORS ====================-->
<section class="sponsor section">
<div class="sponsor__container container grid">
<div class="sponsor__content">
<img src="assets/img/sponsors1.png" alt="" class="sponsor__img">
</div>
<div class="sponsor__content">
<img src="assets/img/sponsors2.png" alt="" class="sponsor__img">
</div>
<div class="sponsor__content">
<img src="assets/img/sponsors3.png" alt="" class="sponsor__img">
</div>
<div class="sponsor__content">
<img src="assets/img/sponsors4.png" alt="" class="sponsor__img">
</div>
<div class="sponsor__content">
<img src="assets/img/sponsors5.png" alt="" class="sponsor__img">
</div>
</div>
</section>
</main>