-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (101 loc) · 3.37 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
<!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>Meditation App | 7x9.dev</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/63d05c05ac.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<h1>Relaxing Sounds to Calm & Meditate</h1>
<div class="meditations">
<div class="meditation forest">
<p class="number">01</p>
<div>
<h4>Forest</h4>
<p class="description">
Take a walk in this tranquil forest anytime, and make it a
peaceful sanctuary in your heart.
</p>
<a href="forest/forest.html"
><button class="btn">
<i class="fa-regular fa-circle-play fa-lg"></i>
Listen
</button></a
>
</div>
</div>
<div class="meditation ocean">
<p class="number">02</p>
<div>
<h4>Ocean waves</h4>
<p class="description">
Take some deep breaths and allow your mind and body to
relax, clear the cache of your brain.
</p>
<a href="ocean/ocean.html"
><button class="btn">
<i class="fa-regular fa-circle-play fa-lg"></i>
Listen
</button></a
>
</div>
</div>
<div class="meditation rain">
<p class="number">03</p>
<div>
<h4>Rain sounds</h4>
<p class="description">
Lean against the window, open the letter from the sky, and
read each droplet of falling rain.
</p>
<a href="rain/rain.html"
><button class="btn">
<i class="fa-regular fa-circle-play fa-lg"></i>
Listen
</button></a
>
</div>
</div>
</div>
</div>
<video
autoplay="autoplay"
loop="loop"
muted
defaultMuted
playsinline
id="bgVideo"
controls
>
<source src="video.mp4" type="video/mp4" />
</video>
<footer>
<p>
© 2022
<a class="webLink" href="https://www.7x9.dev/" target="_blank"
>7x9.dev</a
>
| Coded and designed by
<a
class="webLink"
href="https://www.linkedin.com/in/valerie-di/"
target="_blank"
>Valerie D.</a
>
</p>
</footer>
</body>
</html>