-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquotes.html
More file actions
63 lines (59 loc) · 1.73 KB
/
quotes.html
File metadata and controls
63 lines (59 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>Meditation Quotes</title>
</head>
<body>
<header>
<img src="https://i.ibb.co/5WBJgcM/focus3-removebg-preview.png" alt="Meditation">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="howto.html">How to Meditate</a></li>
<li><a href="types.html">Meditation Types</a></li>
<li><a href="quotes.html">Meditation Quotes</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</nav>
</header>
<main>
<h1>Meditation Quotes</h1>
<ul>
<li>
<h2>Thich Nhat Hahn.</h2>
<blockquote>
“Feelings come and go like clouds in a windy sky. Conscious breathing is my anchor.”
</blockquote>
</li>
<li>
<h2>Jiddu Krishnamurti.</h2>
<blockquote>
“To understand the immeasurable, the mind must be extraordinarily quiet, still.”
</blockquote>
</li>
<li>
<h2>Swami Muktananda.</h2>
<blockquote>
“Your goal is not to battle with the mind, but to witness the mind.”
</blockquote>
</li>
<li>
<h2>Swami Dhyan Giten.</h2>
<blockquote>
“Give the child a taste of meditation by creating a climate and atmosphere of love, acceptance and silence.”
</blockquote>
</li>
<li>
<h2> Ajahn Brahm.</h2>
<blockquote>
“Meditation is like a gym in which you develop the powerful mental muscles of calm and insight.”
</blockquote>
</li>
</ul>
</main>
<footer>
<p>copyright reserved 2021</p>
</footer>
</body>
</html>