-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjgm.html
126 lines (90 loc) · 4.16 KB
/
jgm.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
<!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>Jana Gana Mana</title>
<link rel="stylesheet" href="jgm.css">
<link rel="shortcut icon" href="PBH Logo.jpg" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<section>
<header class="text-gray-600 body-font" style="background-color: rgba(0, 0, 144, 0.722)">
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
<a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0" href="index.html">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path>
</svg>
<span class="ml-3 text-xl" style="user-select: none; color: white;">Pyara Bharat Hamara</span>
</a>
<nav class="md:mr-auto md:ml-4 md:py-1 md:pl-4 md:border-l md:border-gray-400 flex flex-wrap items-center text-base justify-center" style="color: white">
<a class="mr-5 hover:text-gray-900" href="index.html">Home</a>
<a class="mr-5 hover:text-gray-900" href="pbharticles.html">Pbh Articles</a>
<a class="mr-5 hover:text-gray-900" href="akam.html">Azadi Ka Amrit Mohotsav</a>
<a class="mr-5 hover:text-gray-900" href="ps.html">Patriotic Songs</a>
<a class="mr-5 hover:text-gray-900" href="aboutus.html">About Us</a>
<a class="mr-5 hover:text-gray-900" href="contact.html">Contact Us</a>
</nav>
<button class="inline-flex items-center bg-gray-100 border-0 py-1 px-3 focus:outline-none hover:bg-gray-200 rounded text-base mt-4 md:mt-0"><a href="social-links.html">Social-Links</a>
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-1" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
</div>
</header>
</section>
<section>
<img src="jgmlogo.png" alt="" id="lof">
<h1 id="vmsn">4.Jana Gana Mana</h1>
<audio controls autoplay id="vmsp">
<source src="National Anthem.mp3">
</audio>
</section>
<section>
<a href="vms.html" style="text-decoration: none;">
<div class="song1">
<h1 id="s1h">1.Vande Matram</h1>
</div>
</a>
<a href="mtss.html" style="text-decoration: none;">
<div class="song2">
<h1 id="s2h">2.Maa Tujhe Salaam</h1>
</div>
</a>
<a href="odm.html" style="text-decoration: none;">
<div class="song3">
<h1 id="s3h">3.Desh Mere</h1>
</div>
</a>
<a href="jgm.html" style="text-decoration: none;">
<div class="song4">
<h1 id="s4h">4.Jana Gana Mana</h1>
<img src="playing.gif" alt="" id="playing">
</div>
</a>
</section>
</body>
<script>
let loader = document.getElementById('loading')
window.addEventListener("load", function () {
loader.style.display = "none";
}
)
function hm() {
let cm2 = document.getElementById('hamburger');
let cmbm = document.getElementById('navfp')
if (cmbm.style.display != 'block') {
cmbm.style.display = 'block';
}
else {
cmbm.style.display = 'none';
}
}
</script>
</html>