forked from mchamoudadev/yoga-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (140 loc) · 4.2 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
<!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" />
<title>Yoga website | redesign</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<<<<<<< HEAD
=======
<!-- header -->
>>>>>>> parent of 93afc69... deleted all the files
<header>
<div class="hamburger">
<i class="fa-solid fa-bars" data-visible="false"></i>
<i class="fa-solid fa-close" data-visible="true"></i>
</div>
<nav class="container desktop-menu">
<ul id="left-menu" class="menus-link">
<li><a href="">Our philosophy</a></li>
<li><a href="">Houses</a></li>
<li><a href="">Map</a></li>
</ul>
<h1><a href="#">RetreatM5</a></h1>
<ul id="right-menu" class="menus-link">
<li><a href=""> Leisure</a></li>
<li><a href="">How To Get There</a></li>
<li><a href="">Contacts</a></li>
</ul>
</nav>
<nav class="mobile-menu" data-visible="true">
<div class="navigation">
<h1 class="logo">RetreatM5</h1>
<ul class="menus-link">
<li><a href="">Our philosophy</a></li>
<li><a href="">Houses</a></li>
<li><a href="">Map</a></li>
<li><a href=""> Leisure</a></li>
<li><a href="">How To Get There</a></li>
<li><a href="">Contacts</a></li>
</ul>
</div>
</nav>
</header>
<section class="hero">
<div class="container">
<h1>
YOU CANNOT DO YOGA <br />
IS YOUR NATURAL STATE AMAZING
</h1>
<button class="btn">Learn More</button>
</div>
</section>
<section>
<div class="container yoga">
<div class="content">
<h1>
YOU CAN ALWAYS CONTROL <br />
WHAT GOES ON INSIDE
</h1>
<p>
Donec enim diam vulputate ut. Amet venenatis urna cursus eget nunc
scelerisque viverra mauris. Sit amet venenatis urna cursus eget nunc
scelerisque.
</p>
</div>
</div>
</section>
<!-- info boxes -->
<section>
<div class="container">
<div class="info-boxes">
<div class="box">
<img
src="https://images.unsplash.com/photo-1588286840104-8957b019727f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80"
alt="yoga"
/>
<h1>Why you should go to yoga</h1>
<p>
Scelerisque eu ultrices vitae auctor eu augue ut lectus. Porta non
pulvinar neque laoreet sollicitudin nibh.
</p>
<div>
<button class="btn">view More</button>
</div>
</div>
<div class="box">
<img
src="https://images.unsplash.com/photo-1588286840104-8957b019727f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80"
alt="yoga"
/>
<h1>Why you should go to yoga</h1>
<p>
Scelerisque eu ultrices vitae auctor eu augue ut lectus. Porta non
pulvinar neque laoreet sollicitudin nibh.
</p>
<div>
<button class="btn">view More</button>
</div>
</div>
<div class="box">
<img
src="https://images.unsplash.com/photo-1588286840104-8957b019727f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80"
alt="yoga"
/>
<h1>Why you should go to yoga</h1>
<p>
Scelerisque eu ultrices vitae auctor eu augue ut lectus. Porta non
pulvinar neque laoreet sollicitudin nibh.
</p>
<div>
<button class="btn">view More</button>
</div>
</div>
<div class="box">
<img
src="https://images.unsplash.com/photo-1588286840104-8957b019727f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80"
alt="yoga"
/>
<h1>Why you should go to yoga</h1>
<p>
Scelerisque eu ultrices vitae auctor eu augue ut lectus. Porta non
pulvinar neque laoreet sollicitudin nibh.
</p>
<div>
<button class="btn">view More</button>
</div>
</div>
</div>
</div>
</section>
<script src="main.js"></script>
</body>
</html>