-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
155 lines (149 loc) · 5.43 KB
/
blog.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
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="assets/css/header.css" />
<link rel="stylesheet" href="assets/css/footer.css" />
<link rel="stylesheet" href="assets/css/blog.css" />
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body>
<nav class="nav">
<div class="nav__logo">Yoga Center</div>
<a class="nav__hamburger">
<span class="nav__hamburger__line"></span>
<span class="nav__hamburger__line"></span>
<span class="nav__hamburger__line"></span>
</a>
<div class="nav__menu">
<ul>
<li class="nav__menu__link"><a href="home.html">Home</a></li>
<li class="nav__menu__link"><a href="about.html">About</a></li>
<li class="nav__menu__link"><a href="contact.html">Contact</a></li>
<li class="nav__menu__link">
<a href="appointment.html">Book Appointment</a>
</li>
<li class="nav__menu__link"><a href="blog.html">Blog</a></li>
</ul>
</div>
</nav>
<div class="contact_container">
<div class="row header">
<h1>BLog </h1>
<!-- <h3>Fill out the form below to learn more!</h3> -->
</div>
</div>
<div class="home_section">
<!-- header section end -->
<!-- banner section start -->
<section class="posts" id="posts">
<div class="section__container posts__container">
<p class="section__subheader">BLOG</p>
<h2 class="section__header">Recent Posts</h2>
<div class="posts__grid">
<div class="posts__card">
<img src="assets/image/home/posts-1.jpg" alt="post" />
<div class="posts__content">
<div class="posts__date">
<span>31</span>
<div>
<p>2021</p>
<p>December</p>
</div>
</div>
<h4>Unlocking Inner Peace</h4>
<p>
Dive into the practices that help you cultivate inner peace,
reduce stress, and enhance your overall well-being.
</p>
</div>
</div>
<div class="posts__card">
<img src="assets/image/home/posts-2.jpg" alt="post" />
<div class="posts__content">
<div class="posts__date">
<span>25</span>
<div>
<p>2022</p>
<p>March</p>
</div>
</div>
<h4>From Desk to Mat</h4>
<p>
Learn incorporating simple yoga stretches and breathing
techniques to counter effects of sedentary lifestyle.
</p>
</div>
</div>
<div class="posts__card">
<img src="assets/image/home/posts-3.jpg" alt="post" />
<div class="posts__content">
<div class="posts__date">
<span>06</span>
<div>
<p>2022</p>
<p>August</p>
</div>
</div>
<h4>Yoga Through the Ages</h4>
<p>
From prenatal yoga to gentle senior yoga, discover enhance
flexibility and foster a lifelong love for well-being.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- footer section start -->
<div class="footer_section">
<footer class="footer">
<div class="footer_container">
<div class="row">
<div class="footer-col">
<div class="footer_logo">YOGA CENTER</div>
<div class="footer_quote">
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Architecto ducimus quam reiciendis deleniti commodi qui
accusamus quos ab quibusdam adipisci.
</div>
</div>
<div class="footer-col">
<h4>get help</h4>
<ul style="padding-left: 0px !important">
<li><a href="#">FAQ</a></li>
<li><a href="#">shipping</a></li>
<li><a href="#">returns</a></li>
<li><a href="#">order status</a></li>
<li><a href="#">payment options</a></li>
</ul>
</div>
<div class="footer-col">
<h4>online shop</h4>
<ul>
<li><a href="#">watch</a></li>
<li><a href="#">bag</a></li>
<li><a href="#">shoes</a></li>
<li><a href="#">dress</a></li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<a href="#" title="facebook"></a>
<a href="#" title="insta"></a>
<a href="#" title="twitter"></a>
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- footer section end -->
</div>
<script src="assets/js/header.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>