-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfas2.html
95 lines (83 loc) · 4.93 KB
/
fas2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Top 3 Interesting Facts about Space Pt-2</title>
<link rel="shortcut icon" href="PBH Logo.jpg" type="image/x-icon">
<link rel="stylesheet" href="fas2.css">
<link href="https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@500&family=Roboto:wght@300&display=swap"rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+2&display=swap" rel="stylesheet">
<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 href="https://fonts.googleapis.com/css2?family=DynaPuff&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<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>
<div>
<h1 id="main-heading">Top 3 Interesting Facts About Space Pt.2</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/J9EpoPHfPjs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen id="yt-embed"></iframe>
<p id="vl">Video Language - Hindi</p>
<h1 id="ti">The Information</h1>
<p id="info-para">Top 3 Interesting Facts About Space Pt.2<br>
#1.Do you know which is the biggest galaxy of
our space.So it is IC 1101 with diameter of <br>
3.9139 million light years.
#2.Do you know which is the Biggest satellite
of our space.So it is Ganymede with diameter
of 5,268.2 km.<br>
#3.Do you know which is the planet with most
satellites in our space.So it is Jupiter with 80
satellites (57 confirmed, 23 provisional).
</p>
</div>
<br>
<a href="Top 3 Interesting Facts About Space Pt-2.pdf" download>
<button id="download-pdf">
Download Pdf <i class="fa-solid fa-file-pdf"></i>
</button>
</a>
</section>
</body>
</html>
<script>
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>