forked from Aditya-Raj-25/Meditation-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (55 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website with Background Video</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<img src="https://image.shutterstock.com/image-vector/yoga-lotus-position-silhouette-vector-260nw-673194454.jpg"
alt="Website Logo">
</div>
<nav>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="search-bar">
<input type="text" placeholder="Search...">
<button>Search</button>
</div>
</div>
</header>
<!-- Page me content -->
<main>
<section class="content">
<h1>Welcome to the Meditation Guide</h1>
<div>
<pre>The notion of mediation is deep as this universe.
We all want to meditate just to keep our mind calm, but it's a hidden doorway to transcend the physical realm.
The hidden path to know the inner and true self of a being.
You can use it to either improvise your life or improvise yourself.</pre>
</div>
</section>
</main>
<div class="boxes">
<div class="box"><a href=#link class="links">BASIC</a></div>
<div class="box"><a href=#link class="links">INTERMEDIATE</a></div>
<div class="box"><a href=#link class="links">YOGA</a>
</div>
</div>
<!-- Background Video -->
<div class="video-background">
<video autoplay muted loop>
<source src="/pics/web%20photo1.mp4" type="video/mp4">
</video>
</div>
</body>
</html>