-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1092 lines (973 loc) · 49.7 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link href="./modified/main.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Inter&display=swap" rel="stylesheet" />
<link href="./modified/style.css" rel="stylesheet" />
<script src="./modified/main.js"></script>
<title>Magazine</title>
<style>
.voem {
background: rgba(251, 143, 143, 0.266);
color: white;
padding: 2px;
border-radius: 30px;
z-index: 10;
position: relative;
}
</style>
</head>
<body class="body">
<div class="container">
<div>
<div class="head">
<div class="banner">
<div class="h-bg8"></div>
<div class="over-b"></div>
</div>
<span class="t-hs"><i>S</i>IN<i>G</i>ULA<i>RI</i>TY</span>
<div class="h-nav">
<span class="h-nav-links"><a href="#nv">MAGAZINE MENU</a>
<a href="#INTRO-TEXT">INTRO TEXT</a>
<a href="#VISION">VISION</a></span>
</div>
</div>
<div>
<div id="Inside-menu">
<div id="uq">Mind : </div>
<ul class="ull">
<li class="lli">what is Universe ?</li>
<li class="lli">Orgin of Universe !</li>
<li class="lli">About First Star ?!</li>
<li class="lli">What is the orgin ?</li>
<li class="lli">Where is the orgin ?</li>
<li class="lli">When this begin ?</li>
<li class="lli">When time start ?</li>
<li class="lli">Where is Otherthings ?</li>
<li class="lli">Why we can't see that ?</li>
<li class="lli">Is there parallel universes ?</li>
<li class="lli">Are We Alone ?</li>
<li class="lli">Or Special ?</li>
</ul>
</div>
</div>
<script>
const items = document.querySelectorAll("li");
const pov = document.querySelector("#uq");
let index = 0;
function showItem() {
items[index].classList.add("show");
pov.classList.add("show");
setTimeout(function() {
items[index].classList.add("hide");
pov.classList.add("hide");
setTimeout(function() {
items[index].classList.remove("show");
items[index].classList.remove("hide");
pov.classList.remove("show");
pov.classList.remove("hide");
index++;
if (index === items.length) {
index = 0;
}
setTimeout(showItem, 1000);
}, 350);
}, 1000);
}
showItem();
</script>
<div id="top" class="load">
<div class="loading-text">100%</div>
</div>
<script>
const loadText = document.querySelector(".loading-text");
const bg = document.querySelector(".body");
let load = 0;
const blurring = () => {
load++;
if (load > 99) clearInterval(int);
loadText.innerText = `${load}%`;
loadText.style.opacity = scale(load, 0, 100, 1, 0);
bg.style.filter = `blur(${scale(load, 0, 100, 30, 0)}px)`;
};
const scale = (num, in_min, in_max, out_min, out_max) => {
return ((num - in_min) * (out_max - out_min)) / (in_max - in_min) + out_min;
};
let int = setInterval(blurring, 30);
</script>
<hr class="ui u-line">
<section>
<div class="body text-way way-2">
<div class="base-box">
<p class="split-lines">
Humanitarian universe: Here Human Alive!
</p>
</div>
</div>
</section>
<section class="body">
<div class="text-way">
<div class="base-box">
<p class="split-lines">
Universe is a mystery.
The More we think More Questions
we found . Yes , Those thought are the
reason We prepared
this web magazine.
Very Glad to say you get
all included contents with what cosmologists
and scientists elaborated. I am much
fascinating while thinking about this mysteries.
specially about the time, the first secound.
it lead many-many
possibilities , the Universe
could Originated from Nothing !
Big bang started time ! And so on.
So at last Embed a detailed
<span class="voem"> <a href="#voem"> video</a> </span>
Lets enjoy this Reading + Design.
<div class="cir"></div>
</p>
</div>
</div>
</section>
<div class="body">
<div class="div-mid">
<div class="divider"></div><span class="Editorial mag-txt"> EDITORIAL
<div class="magic">
<span class="magic-text">BOARD</span>
</div>
</span>
<div class="divider"></div>
<span class="Marquee">
<marquee id="me-credit" scrollamount="20" scrolldelay="0" direction="left"> Nazim • Mohammed anfas • Niranjan • Nazim • Mohammed anfas • Niranjan • Nazim • Mohammed anfas • Niranjan • Nazim • Mohammed anfas • Niranjan • Nazim • Mohammed anfas • Niranjan • </marquee>
</span>
<br><br>
<h1> HOSTED, MSM HSS KALLINGABARMBA
<br> 2021-2023 YEAR CS BATCH.
<br><br><br>
</h1>
<div class="divider"></div>
</div>
</div>
<div>
<div class="content-tainer">
<div class="content-mac">
<span class="text-c">
universe is a mystery
that puzzled by
scientists and
philosophers for
centuries it is not
currently understood
How the Universe could
Originated from
emptiness ? it being a
mystery yet to be solve. analysis
some of the mysteries
together. selected
topics which will make
you think about the
existence, and find your
own values in this
world. it will be the best
explanations all about
content with what
cosmologists and
scientists elaborated.it is much
fascinating while thinking about the mysteries.
it will more curious if think Orgin of intelligence, human, life ?
</span>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<span class="content-heading">What is the orgin ?</span>
<div class="bg-content">
<div class="tent-bg t-1"></div>
</div>
<div class="name-profile">
<div class="dp-real">
<div class="dp-round anfas"></div>
</div>
<span class="c-name"> Anfas </span>
<span class="cdate"> February 02 </span>
</div>
<div class="content-mac">
<span class="text-c">
I think that life is
the most fascinating naturally occurring
phenomenon in the universe and I think
that's uncontroversial I mean clearly
the human brain is the most complex
structure that we know of
it is a product to the laws of nature.
but we are a long way from understanding
how that produces the experience of
living right and so really
if you want to ask what's the meaning
of life then first of all we need to
understand life and secondly we
understand Consciousness because meaning
emerges from consciousness.
</span>
<br /><br /><br />
<span class="text-c">
when we observe the diversity of life on
Earth from the tiniest microorganisms to
the most complex and diverse forms of
plants and animals we see that they all
share a fundamental characteristic they
are composed of cells
and then as we go through the fossil
record and reconstruct the history of
Life on our planet going farther and
farther back we find that while early
life was a bit simpler it was not only
all Cellular in nature but that all life
can be genetically traced back to what
biologists call Luca or the last
Universal common ancestor.
</span>
<br /><br /><br /> <br><br> <br><br>
<span class="text-c">
<br>
<div class="svg-prosouras">
<img style="background : #000" src="modified/ankylosaurus-skeleton-bones_adobe_express.svg" alt="">
</div>
</span>
<br><br><br><br>
<span class="text-c">
this skeloton of ankylosaurus, what you find out.
if we analys the structure , the connection
making the body symetry. And it will make think about
complexsity of this thoughts, where it begin
to have a symmetry to a living speises
as we delve deeper into the history of
life on Earth studying the fossil record
and reconstructing past environments we
find that all extant forms of life can
be traced back to a single ancient
origin
</span>
<br /><br /><br />
<span class="text-c">
but does that simply the very first
life on Earth was a single cell and that
all life came from that
it's a fascinating possibility.
</span> <br /><br /><br />
<span class="text-c">
when it comes to the question of what
there first life on Earth was we'll have
to first come to an agreement as to what
actually defined life before we agree on
an answer
</span>
<br /><br /><br><br><br>
<span class="content-heading">
<h4>what define a life ?</h4>
</span>
<br><br />
<span class="text-c">
if you define life as something that
needs to be cellular based then you'll
conclude that there was no life until
the first cell evolved
it is widely believed that the first
forms of life on Earth were simpler and
more primitive preceding the development
of cells by a certain amount of time
these early forms of life likely
possessed a primary metabolism and the
ability to self-replicate laying the
foundation for the emergence of more
complex forms of life
the only thing we can be absolutely
certain of however is that all the life
that exists today can be traced back to
a common ancestor a little over three
billion years ago
</span>
<br /><br /><br />
beyond that there's still more science
to be done in order to gain a deeper
understanding of the origins of life.
<span class="text-c">
</span>
<br /><br /><br />
<span class="text-c">
</span>
</div>
</div>
</div>
<div>
<div class="content-tainer">
<span class="content-heading">When the First secounds begin ? </span>
<div class="bg-content">
<div class="tent-bg t-2"></div>
</div>
<div class="name-profile">
<div class="dp-real">
<div class="dp-round"></div>
<div class="dp-round anfas"></div>
<div class="dp-round niranjan"></div>
</div>
<span class="c-name"> Anfas , Niranjan</span>
<span class="cdate">February 03 </span>
</div>
<div class="content-mac">
<span class="text-c">when we look at the universe today we
know with an extraordinary amount of
scientific certainty that it wasn't
simply created as it is now but evolved
to its present configuration over
billions of years of cosmic history
we can use what we see today both nearby
and at Great distances to extrapolate
what the universe was like a long time
ago and to understand how it came to be
the way it is now
but one of the greatest Mysteries today
is did time have a beginning ? </span><br /><br /><br />
<div class="text-c">The nature of time is a complex and
highly debated Topic in physics and
cosmology
from a classical perspective time is
typically seen as an absolute Universal
concept that flows uniformly and
independently of other physical
processes
According to this view time is a
dimension much like space in which
events occur and can be ordered from
past to Future
however in the early 20th century the
development of special and general
relativity theories by Einstein
fundamentally changed our understanding
of time
</div>
<br /><br /><br />
<div class="text-c">
according to these theories time and
space are intimately connected and
cannot be thought of as separate
entities
the passage of time is affected by
gravity and motion and the rate at which
time passes can be different for
different Observers
in addition to these classical and
relativistic Views quantum mechanics
also offers a different perspective on
the nature of time
in quantum mechanics time is not an
absolute concept but rather an emergent
phenomenon that arises from the
interactions between Quantum systems
in the theory of quantum gravity which
attempts to unify quantum mechanics and
general relativity time is seen as a
relational concept that exists only in
the context of other physical processes.
</div>
<br /><br /><br />
<div class="text-c">
some theories
such as the Big Bang model suggest that
time began with the initial expansion of
the universe which is estimated to have
occurred around 13.8 billion years ago
however other theories suggest that time
has always existed and did not have a
beginning
for example some theories propose the
existence of a Multiverse in which our
universe is just one of an infinite
number of universes that have always
existed and will always exist in which
case time would not have a beginning
in addition to these cosmological
explanations there are also some
theories from the [ realm ] of quantum
physics that suggest that time and space
may not be fundamental concepts but
rather emergent phenomena resulting from
more fundamental principles currently
there is no consensus among scientists
as to whether time had a beginning or
not and further research will be needed
to better understand the nature of time
and its relationship to the universe.
</div>
</div>
</div>
</div>
<div>
<div class="content-tainer">
<span class="content-heading">Where is everything ?</span>
<div class="bg-content">
<div class="tent-bg t-3"></div>
</div>
<div class="name-profile">
<div class="dp-real">
<div class="dp-round"></div>
<div class="dp-round anfas"></div>
<div class="dp-round nazim"></div>
</div>
<span class="c-name">Anfas , Nazim </span>
<span class="cdate">February 04 </span>
</div>
<div class="content-mac">
<span class="text-c">
One of the most puzzling
mysteries about the universe is simply
where is everything
the known particles that make up the
observable universe such as photons
neutrinos electrons and quarks and
gluons that form atoms only account for
a small fraction of the total matter and
energy present when we gaze into the
vast expanse of the cosmos we find that
all the matter and energy we can observe
makes up only a small fraction of the
total content of the universe the
remainder which is estimated to account
for about 95% of the universe's energy is
composed of mysterious and Elusive
substances that have yet to be directly
detected these components refer to as
dark energy and dark matter are thought
to make up 68 and 27 of the universe
respectively
do we even know when they came into
existence
</span>
<br /><br /><br />
<div class="tet-c">
" we look in the universe and we see the
effects of gravity and let's see let's
add up all the stars and galaxies and
and planets and comets and black holes
everything we know about to account for
this gravity that we see and when you
add in the dark matter
this this extra gravity it turns the
universe into the universe that we see
that's why we know the dark matter is
real we don't know what it is but we
know it's there because we can't make
the universe as we see it unless we put
this extra gravity into our simulations
to match the gravity that we see "
</div>
<br /><br /><br />
<div class="text-c">
There are many Mysteries surrounding
dark matter and dark energy but there
are also some facts that we can
confidently state.
One of these is that dark energy has an
effect on the expansion of the universe
and its presence and effects only become
observable around six to nine billion
years ago it appears to be the same in
all directions it appears to have a
constant energy density throughout time
it appears to not Clump or cluster or
anti-cluster with the matter indicating
its uniform throughout space
when we look at how the universe expands
dark energy is absolutely essential for
this process
in contrast to Dark Energy the effects
of dark matter have been present
throughout the entire 13.8 billion years
of the universe's history
</div>
<br /><br /><br />
<div class="text-c">
The observed large-scale structure of
the universe including the formation of
galaxies and Galaxy clusters can only be
explained by the presence of dark matter
which is estimated to be about five
times more abundant than normal matter
without it all that we observe would be
impossible to explain
the current state of our universe is
dominated by dark energy but this is a
relatively recent occurrence in the past
the universe was smaller and more
condensed resulting in higher densities
of matter and radiation
about 6 billion years ago the matter and
dark energy densities were equal but
about 9 billion years ago the dark
energy density was low enough that its
effect on the universe's expansion rate
were not noticeable
the farther we extrapolate back in time
the more difficult it becomes to see and
measure dark Energy's effects.
</div>
</div>
</div>
</div>
<div>
<div class="content-tainer">
<span class="content-heading">Is there parallel universes?</span>
<div class="bg-content">
<div class="tent-bg t-4"></div>
</div>
<div class="name-profile">
<div class="dp-real">
<div class="dp-round"></div>
<div class="dp-round anfas"></div>
<div class="dp-round nafia"></div>
</div>
<span class="c-name">Anfas , Nafia </span>
<span class="cdate">February 06 </span>
</div>
<div class="content-mac">
<span class="text-c">
The idea of parallel universes also
known as the Multiverse hypothesis
suggests that there may be an infinite
number of separate universes in addition
to our own each with its own set of
physical laws and constants you've
likely imagined it before another
Universe out there just like this one
where all the random events and chances
that brought about our reality exactly
as it has played out just the same
perhaps our universe with the version of
events we're familiar with isn't the
only one out there perhaps there are
other universes perhaps even with
different versions of ourselves
different histories and Alternate
outcomes from what we've experienced
this isn't just fiction but one of the
most exciting possibilities brought up
by theoretical physics
</span>
<br /><br /><br />
<div class="tex-c">
" the word Universe meant everything the
totality every Star every Galaxy the
whole shebang so what sense could there
possibly be in having more than one
everything and what we have found in
research that actually dates back a
number of decades but most vigorously
relatively recently is that our
mathematical investigations are
suggesting that what we have thought to
be everything may actually be a tiny
part of a much grander Cosmos and that
grander Cosmos can contain other Realms
that seem to rightly be called Universe
just as our realm has been called
Universe which means that you'd have
many universes multiple universes which
we call them Multiverse "
</div>
<br /><br /><br />
<div class="tex-c">
" with the Multiverse
where there could be pockets of the
universe that are expanding with no
knowledge of any other pockets of the
universe these are essentially
independent universes from one another
and never the twain will meet imagine
you're a ship at Sea and you look to the
Horizon and that's your whole universe
there to the Horizon there's another
ship that has its own Horizon and these
ships don't even see each other you'll
only see each other if somehow your two
Horizons can overlap
and we don't know how to do that in our
universe because they're non-causal
you'd have to find some way to tunnel
from one Universe to the other in order
to access that but that could be very
dangerous because if the laws of physics
are different than the ones you evolved
on then you could just dissolve into a
pile of goo because the charge on the
electron is different and all of your
biochemistry would change "
</div>
<br /><br /><br />
<div class="text-c">
we don't know whether there are any
entangled properties between these
different universes within the
Multiverse we don't know whether all of
the universes that are spawned have the
same physical laws and fundamental
constants or whether there are dynamics
that govern these laws and constants
that somehow get set either during
inflation or the final transition to the
hot big bang additionally we have no
idea how to quantify the probabilities
of these different outcomes what
cosmologists working on is called The
Measure problem
</div>
<br /><br /><br />
<div class="tex-c">
these universes are predicted to exist
but we don't know how many of them there
are whether or how they are related and
what similarities or differences they
have relative to our own universe.
</div>
</div>
</div>
</div>
<div>
<div class="content-tainer">
<span class="content-heading">ALL BEGIN FROM A BOUND ?</span>
<div class="bg-content">
<div class="tent-bg t-5"></div>
</div>
<div class="name-profile">
<div class="dp-real">
<div class="dp-round"></div>
<div class="dp-round anfas"></div>
<div class="dp-round fasna"></div>
</div>
<span class="c-name">Anfas , Fasna </span>
<span class="cdate">February 08 </span>
</div>
<div class="content-mac">
<span class="text-c">
Galaxies could be clusters of stars drawn together not just by gravity, but through the attractive force of gender and sex, as material is thrown across the cosmos to fertilise new stars, solar systems, and ultimately, life. And as humans are made from star dust, it may not just be a natural tendency to ascribe gender randomly, but a biological imperative to impart gender to the universe, because we humans have an intrinsic feeling that the universe is an gendered entity.
</span>
<br /><br /><br />
<div class="text-c">
This gender arises from the fact that all atoms and their constituent parts from quarks, electrons, protons, neutrons, etc. also have gender. the earth nature follows the porpose of fertilizing to generate new characters and items. the only reason may be why this acceptable because of the existing of existence matrix.
</div>
<br><br>
we will Berifly discuss about the possibilities and way of this imaginable theory's importants.
<br>
<br /><br /><br />
<div class="text-c">
According to the Big Bang theory, the energy and matter initially present have become less dense as the universe expanded. After an initial accelerated expansion called the inflationary epoch at around 10<sup>−32</sup> seconds, and the separation of the four known fundamental forces, the universe gradually cooled and continued to expand, allowing the first subatomic particles and simple atoms to form. Dark matter gradually gathered, forming a foam-like structure of filaments and voids under the influence of gravity. Giant clouds of hydrogen and helium were gradually drawn to the places where dark matter was most dense, forming the first galaxies, stars, and everything else seen today.
</div>
<br /><br /><br />
<div class="text-c">
There are many competing hypotheses about the ultimate fate of the universe and about what, if anything, preceded the Big Bang, while other physicists and philosophers refuse to speculate, doubting that information about prior states will ever be accessible. Some physicists have suggested various multiverse hypotheses, in which our universe might be one among many universes that likewise exist.
</div>
<br><br><br><br>
The only thing which preclude us from acknowledging and pursuing this binding theory is our own scientific and cultural bias and lack of deep cosmological understanding.
</div>
</div>
</div>
<div>
<div class="l-contentainer">
<div>
<div class="u-line"></div>
<div class="u-line2"></div>
</div>
<div class="li-head">
<span class="s-text">SINGULARITY</span>
<br /><span class="s-sub-text">ABOUT THE THEME </span>
</div>
<span class="st-text">Singularity , the state of infinite density and infinite
temperature that is believed to have existed before the universe
began expanding in what is known as the Big Bang. According to the
current dominant theory of cosmology, the Big Bang model, the
universe began as a singularity, an infinitely hot, dense point.
This singularity is thought to have contained all the matter and
energy that would eventually make up the observable universe.</span>
<div class="s-img"></div>
</div>
<div>
<div id="voem" class="l-line1"></div>
<div class="l-line2"></div>
</div>
</div>
<div>
<div class="orgin-content">
<span class="o-h">ORGIN OF UNIVERSE</span>
<span class="o-text"><br />
A VIDEO FROM MELODY SHEEP YOUTUBE CHANNEL , VISUAL REPRESENTATION OF
ORGIN OF UNIVERSE THE BIG-BANG THEORY , FROM SINGULARITY TO THE
ORGIN OF ENTIRE UNIVERSE EXPLAINED WITH IN <b class="o-min">10 MINUTE</b>.
</span>
<div id="nv" class="o-b1img">
<iframe src="https://www.youtube-nocookie.com/embed/TBikbn5XJhg?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<a href="/index.html">
<div class="link-to-pag">
<div class="n-line"></div>
<div class="l-img"></div>
<div class="l-blank"></div>
<span class="link-text">LINK TO MAIN PAGE</span>
<div class="l-line"></div>
</div>
</a>
</div>
<div>
<div class="p-cntr">
<div class="p-title">
<div class="p-arw">
<svg id="svga" width="30" height="30" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.61682 1.17676L16 1.17676V14.353" stroke="white" stroke-width="2" />
<path d="M16 1.17676L0.94397 16" stroke="white" stroke-width="2" />
</svg>
</div>
<span class="p-h">THANKS</span>
</div>
<span class="text-tnx">We Thank to all the teachers who Guided us , Teached the basic and
made us to use languages and sciences , At the last of section of
school life. We thank all teacher who with us in LP , UP , HS , HSS.
<br />
we proud to present our project, which explores the theories of
origin of universe. This project represents a culmination of couple
weeks of research, experimentation, and analysis. Our goal was to
Bring related theories with in a platform and we believe we have
achieved that through our results. We would like to express our
gratitude to Reji Ma'am for their guidance and support during this
project.</span>
</div>
</div>
<hr>
<style>
.log-fav {
display: flex;
align-items: center;
justify-content: space-around;
}
.log-fav {
margin: 2vh auto;
width: 100%;
}
.log-fav div {
display: grid;
place-items: center;
opacity: 15%;
width: 150px;
height: 150px;
}
.logos {
margin: 2vh auto;
font-size: 15px;
text-align: center;
color: #38343B;
}
.logos p {
width: 60%;
margin: 2vh auto;
}
.log-fav div img {
border: 36px solid white;
width: 100%;
}
</style>
<div class="logos">
<div class="log-fav">
<div class="li1">
<img src="https://yt3.googleusercontent.com/ytc/AL5GRJWGMYTo_GTCCcnEGgjKGJybDMizh3Ayd5vBFSAm4A=s176-c-k-c0x00ffffff-no-rj" alt="">
</div>
<div class="li2">
<img src="https://yt3.googleusercontent.com/ytc/AL5GRJUwJq4tRHGhzqluxZ-gdd3TUhsFQFlXV1tUqPkfBQ=s176-c-k-c0x00ffffff-no-rj" alt="">
</div>
<div class="li3">
<img src="https://yt3.googleusercontent.com/hszkPyLxCkZDE1EaluSK_CQXGvI8qB5L79z8G2YUrHfwnF6XFXPW4Rzd2J96M6mSiZmDZ7Ep1g=s176-c-k-c0x00ffffff-no-rj" alt="">
</div>
<div class="li4">
<img src="https://yt3.googleusercontent.com/u_WXO7kmcjKz9icOvvXl07dCkGRE1UvGUtptEgmIpJM4vlvYOL7YGp8RNQmq5ggtvDcPkbTS=s176-c-k-c0x00ffffff-no-rj" alt="">
</div>
<div>
<img src="https://yt3.googleusercontent.com/5UGheXeYe6w-lPMEWUjqtngTfGcPtxk_5B7qIBpe9ablZZLUWz7W8jDAcT5W7NnZIGfiffTj=s176-c-k-c0x00ffffff-no-rj" alt="">
</div>
<div>
<img src="https://yt3.googleusercontent.com/mNP-fF-BAbheUYglvDsfCXDSRlHbNkvknziSeuyey7mDl80qLiMTcEH_4qgcsl68B0V2RAJ2Ano=s176-c-k-c0x00ffffff-no-rj" alt="">
</div>
</div>
<p> Referred sources.
</p>
</div>
<hr>
<div class="f-division">
<div class="f-divider"></div>
<div class="rao">
<span id="nui" class="qoute">Developing World Developing Mindset , Competetive World Competetive Mindset </span>
</div>
<div class="foot-div">
<div class="credit-div">
<span class="cre-txt">Credit.</span>
<div class="redit">
<div class="redit-name">
<div class="re-name">
<span class="dit-name">Anfas</span>
<div class="re-arrow-bg">
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.61682 1.17676L16 1.17676V14.353" stroke="white" stroke-width="2" />
<path d="M16 1.17676L0.94397 16" stroke="white" stroke-width="2" />
</svg>
</div>
</div>
<div class="name-line"></div>
</div>
<div class="redit-name">
<div class="re-name">
<span class="dit-name">Nafia</span>
<div class="re-arrow-bg">
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.61682 1.17676L16 1.17676V14.353" stroke="white" stroke-width="2" />
<path d="M16 1.17676L0.94397 16" stroke="white" stroke-width="2" />
</svg>
</div>
</div>
<div class="name-line"></div>
</div>
<div class="redit-name">
<div class="re-name">
<span class="dit-name">Team</span>
<div class="re-arrow-bg">
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.61682 1.17676L16 1.17676V14.353" stroke="white" stroke-width="2" />
<path d="M16 1.17676L0.94397 16" stroke="white" stroke-width="2" />
</svg>
</div>
</div>
<div class="name-line"></div>
</div>
</div>
</div>
<div>
<div class="logo-section">
<a href="mailto:[email protected]">
<div class="l-1l lo-go">
<svg width="46" height="43" viewBox="0 0 46 43" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.3836 30.6231H15.6071V21.0117L9.57349 16.7713V28.9269C9.57349 29.8655 10.385 30.6231 11.3836 30.6231Z" fill="#4285F4" />
<path d="M30.0877 30.6231H34.3112C35.3127 30.6231 36.1212 29.8626 36.1212 28.9269V16.7713L30.0877 21.0117" fill="#34A853" />
<path d="M30.0877 13.6619V21.0117L36.1212 16.7713V14.5099C36.1212 12.4124 33.566 11.2166 31.7771 12.4746" fill="#FBBC04" />
<path d="M15.6071 21.0117L15.6071 13.6618L22.8474 18.7502L30.0877 13.6619V21.0117L22.8474 26.1" fill="#EA4335" />
<path d="M9.57349 14.5099V16.7713L15.6071 21.0117L15.6071 13.6618L13.9177 12.4746C12.1257 11.2166 9.57349 12.4124 9.57349 14.5099Z" fill="#C5221F" />
</svg>
</div>
</a>
<a href="https://wa.me/qr/JK6P4QT7SFTME1">
<div class="l-2l lo-go">
<svg width="47" height="43" viewBox="0 0 47 43" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.3528 32.3202L13.9882 26.6271C12.6693 24.4094 12.2502 21.8215 12.808 19.3383C13.3657 16.8551 14.8629 14.6432 17.0246 13.1084C19.1864 11.5737 21.8678 10.819 24.5768 10.983C27.2859 11.1469 29.8408 12.2185 31.7727 14.001C33.7047 15.7835 34.8841 18.1574 35.0945 20.6871C35.305 23.2168 34.5324 25.7326 32.9185 27.7728C31.3045 29.8131 28.9576 31.2409 26.3082 31.7943C23.6589 32.3477 20.8849 31.9895 18.4953 30.7856L12.3528 32.3202ZM18.7915 28.6552L19.1713 28.8658C20.9022 29.8247 22.9238 30.2215 24.9211 29.9944C26.9185 29.7673 28.7793 28.929 30.2137 27.6102C31.6481 26.2914 32.5754 24.5661 32.8512 22.7033C33.127 20.8404 32.7357 18.9446 31.7384 17.3113C30.7411 15.678 29.1937 14.3989 27.3374 13.6734C25.4811 12.9479 23.4202 12.8167 21.4758 13.3002C19.5314 13.7838 17.8127 14.855 16.5877 16.3468C15.3626 17.8386 14.6999 19.6673 14.7029 21.5479C14.7013 23.1072 15.1627 24.6364 16.0357 25.9651L16.2739 26.3322L15.3596 29.5097L18.7915 28.6552Z" fill="#00D95F" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.0115 23.0097C27.7888 22.8418 27.528 22.7237 27.2491 22.6642C26.9701 22.6048 26.6804 22.6056 26.4018 22.6667C25.9833 22.8292 25.7129 23.443 25.4424 23.7499C25.3854 23.8235 25.3016 23.8751 25.2068 23.8951C25.112 23.915 25.0126 23.9019 24.9274 23.8583C23.3952 23.2974 22.1109 22.2688 21.2831 20.9395C21.2125 20.8566 21.179 20.7513 21.1898 20.6458C21.2007 20.5402 21.2548 20.4428 21.341 20.3738C21.6426 20.0948 21.8641 19.7491 21.9849 19.3688C22.0117 18.9494 21.9089 18.5316 21.6887 18.1652C21.5185 17.6516 21.1945 17.1943 20.7551 16.8473C20.5284 16.752 20.2771 16.7201 20.0315 16.7553C19.7859 16.7905 19.5564 16.8915 19.3708 17.0459C19.0485 17.3058 18.7927 17.6299 18.6222 17.9944C18.4517 18.359 18.3709 18.7546 18.3856 19.1522C18.3866 19.3755 18.4169 19.5978 18.4758 19.8142C18.6253 20.3341 18.8552 20.8308 19.1583 21.2886C19.3769 21.6393 19.6155 21.9788 19.873 22.3056C20.7097 23.3792 21.7615 24.2908 22.97 24.9897C23.5764 25.3448 24.2245 25.6336 24.9016 25.8502C25.6049 26.1482 26.3814 26.2626 27.1487 26.1812C27.5859 26.1194 28.0001 25.9581 28.3549 25.7114C28.7096 25.4648 28.9941 25.1405 29.1833 24.767C29.2945 24.5414 29.3282 24.2891 29.2799 24.0448C29.164 23.5453 28.4493 23.2505 28.0115 23.0097Z" fill="#00D95F" />
</svg>
</div>
</a>
<a href="https://youtube.com/@anfaskp">
<div class="l-3l lo-go">
<svg width="46" height="43" viewBox="0 0 46 43" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.7188 13.3242C33.8391 13.6077 34.7196 14.4348 35.0173 15.4834C35.5588 17.3863 35.5588 21.3591 35.5588 21.3591C35.5588 21.3591 35.5588 25.3319 35.0173 27.2348C34.7155 28.2873 33.835 29.1145 32.7188 29.3941C30.6933 29.9028 22.5661 29.9028 22.5661 29.9028C22.5661 29.9028 14.4431 29.9028 12.4134 29.3941C11.2932 29.1106 10.4127 28.2834 10.115 27.2348C9.57349 25.3319 9.57349 21.3591 9.57349 21.3591C9.57349 21.3591 9.57349 17.3863 10.115 15.4834C10.4168 14.431 11.2973 13.6038 12.4134 13.3242C14.4431 12.8154 22.5661 12.8154 22.5661 12.8154C22.5661 12.8154 30.6933 12.8154 32.7188 13.3242ZM26.7206 21.3591L19.9701 25.0213V17.697L26.7206 21.3591Z" fill="#FF3000" />
</svg>
</div>
</a>
<a href="https://www.instagram.com/anf4zz/">
<div class="l-4l lo-go">
<svg width="46" height="43" viewBox="0 0 46 43" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.2011 21.489C19.2011 19.3419 21.0593 17.6008 23.3521 17.6008C25.6449 17.6008 27.504 19.3419 27.504 21.489C27.504 23.6362 25.6449 25.3773 23.3521 25.3773C21.0593 25.3773 19.2011 23.6362 19.2011 21.489ZM16.9567 21.489C16.9567 24.7969 19.8199 27.4783 23.3521 27.4783C26.8843 27.4783 29.7475 24.7969 29.7475 21.489C29.7475 18.1812 26.8843 15.4998 23.3521 15.4998C19.8199 15.4998 16.9567 18.1812 16.9567 21.489ZM28.5061 15.2623C28.506 15.5391 28.5935 15.8098 28.7577 16.04C28.9218 16.2702 29.1551 16.4497 29.4282 16.5558C29.7012 16.6618 30.0017 16.6896 30.2917 16.6357C30.5816 16.5818 30.848 16.4486 31.0571 16.253C31.2662 16.0573 31.4086 15.808 31.4664 15.5365C31.5242 15.265 31.4947 14.9836 31.3817 14.7278C31.2687 14.472 31.0772 14.2533 30.8315 14.0994C30.5858 13.9455 30.2969 13.8633 30.0013 13.8632H30.0007C29.6045 13.8634 29.2245 14.0108 28.9443 14.2732C28.664 14.5355 28.5064 14.8912 28.5061 15.2623ZM18.3203 30.9831C17.106 30.9313 16.446 30.7419 16.0074 30.5819C15.4259 30.3699 15.011 30.1174 14.5748 29.7094C14.1386 29.3015 13.8685 28.9133 13.6432 28.3687C13.4722 27.9582 13.2699 27.3399 13.2147 26.2027C13.1543 24.9732 13.1423 24.6039 13.1423 21.4891C13.1423 18.3743 13.1553 18.006 13.2147 16.7755C13.27 15.6384 13.4738 15.0213 13.6432 14.6095C13.8695 14.0649 14.1392 13.6764 14.5748 13.2679C15.0104 12.8594 15.4249 12.6065 16.0074 12.3954C16.4458 12.2353 17.106 12.0459 18.3203 11.9942C19.6332 11.9377 20.0275 11.9264 23.3521 11.9264C26.6766 11.9264 27.0714 11.9386 28.3853 11.9942C29.5996 12.046 30.2585 12.2368 30.6983 12.3954C31.2797 12.6065 31.6946 12.8599 32.1309 13.2679C32.5671 13.6758 32.8361 14.0649 33.0625 14.6095C33.2335 15.0201 33.4357 15.6384 33.4909 16.7755C33.5513 18.006 33.5634 18.3743 33.5634 21.4891C33.5634 24.6039 33.5513 24.9722 33.4909 26.2027C33.4356 27.3399 33.2324 27.958 33.0625 28.3687C32.8361 28.9133 32.5665 29.3018 32.1309 29.7094C31.6952 30.117 31.2797 30.3699 30.6983 30.5819C30.2598 30.742 29.5996 30.9314 28.3853 30.9831C27.0725 31.0396 26.6781 31.0509 23.3521 31.0509C20.026 31.0509 19.6328 31.0396 18.3203 30.9831ZM18.2172 9.89583C16.8913 9.95238 15.9853 10.1493 15.194 10.4376C14.3746 10.7353 13.6809 11.1348 12.9877 11.7829C12.2946 12.4311 11.8691 13.0817 11.5511 13.8491C11.2433 14.5906 11.033 15.4386 10.9726 16.6803C10.9113 17.9239 10.8972 18.3215 10.8972 21.489C10.8972 24.6565 10.9113 25.0541 10.9726 26.2978C11.033 27.5396 11.2433 28.3875 11.5511 29.1289C11.8691 29.8958 12.2947 30.5472 12.9877 31.1951C13.6808 31.843 14.3746 32.2419 15.194 32.5405C15.9868 32.8288 16.8913 33.0257 18.2172 33.0822C19.5459 33.1388 19.9697 33.1529 23.3521 33.1529C26.7344 33.1529 27.159 33.1397 28.487 33.0822C29.813 33.0257 30.7184 32.8288 31.5101 32.5405C32.329 32.2419 33.0232 31.8432 33.7164 31.1951C34.4096 30.547 34.8342 29.8958 35.153 29.1289C35.4609 28.3875 35.6721 27.5395 35.7315 26.2978C35.7919 25.0532 35.8059 24.6565 35.8059 21.489C35.8059 18.3215 35.7919 17.9239 35.7315 16.6803C35.6711 15.4385 35.4609 14.5901 35.153 13.8491C34.8342 13.0822 34.4085 12.4321 33.7164 11.7829C33.0243 11.1338 32.329 10.7353 31.5111 10.4376C30.7184 10.1493 29.8129 9.95144 28.488 9.89583C27.16 9.83929 26.7354 9.8252 23.3531 9.8252C19.9707 9.8252 19.5459 9.83835 18.2172 9.89583Z" fill="url(#paint0_linear_9_45)" />
<defs>
<linearGradient id="paint0_linear_9_45" x1="35.3272" y1="33.1529" x2="12.0496" y2="8.29759" gradientUnits="userSpaceOnUse">
<stop stop-color="#FBE18A" />
<stop offset="0.21" stop-color="#FCBB45" />
<stop offset="0.38" stop-color="#F75274" />
<stop offset="0.52" stop-color="#D53692" />
<stop offset="0.74" stop-color="#8F39CE" />
<stop offset="1" stop-color="#5B4FE9" />
</linearGradient>
</defs>
</svg>
</div>
</a>
</div>
<a href="#top">
<div class="circle-arrow">
<div class="c-arrow">
<svg width="23" height="24" viewBox="0 0 23 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.0874 11.5195L11.5189 2.0245L20.8671 11.3102" stroke="white" stroke-width="2" />