-
Notifications
You must be signed in to change notification settings - Fork 4
/
manga.html
112 lines (86 loc) · 3.09 KB
/
manga.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
<!DOCTYPE html>
<html>
<head>
<title>Anime Info</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="manga.css">
<link rel="shortcut icon" href="./icons/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="loader-bg">
<div class="loader"></div>
</div>
<section class="top-nav">
<div class="name">
The Ultimate Escape
</div>
<input id="menu-toggle" type="checkbox" />
<label class='menu-button-container' for="menu-toggle">
<div class='menu-button'></div>
</label>
<ul class="menu">
<li><a href="index.html">Homepage</a></li>
<li><a href="manga.html">Manga</a></li>
<li><a href="login.html">Sign Up</a></li>
<li><a href="quiz.html">Quiz</a></li>
</ul>
</section>
<button id="backtotop" title="Top"><img src="collapse.png" alt=""></button>
<h1 id="myHeading">Top Manga</h1>
</div>
<div id="mangadiv">
<div class="manga-container">
</div>
<div class="expand"></div>
</div>
<script src="manga.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
setTimeout(function () {
$('.loader-bg').fadeToggle();
}, 1500);
</script>
<footer class="footer-distributed">
<div class="footer-left">
<h3>Web<span>Decoders</span></h3>
<p class="footer-links">
<a href="https://github.com/diya1510" class="link-1">Pratyasha Panda</a>
<a href="https://github.com/Manasamohapatra1">Manasa Mohapatra</a>
<a href="https://github.com/EdwardoEkka">Vishal Ekka</a>
<a href="https://github.com/Hritesh49">Hritesh Roshan Mahapatra</a>
<a href="https://github.com/Goutam-04">Goutam ku Nayak</a>
</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><span>VSSUT</span> Burla, Sambalpur</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p><a href="https://enigmavssut.com/">Enigma</a></p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About Us</span>
We are a group of developers, have tried to make a anime website having various type of features using html,
css, javascript and jikan api. Hope you like it.
</p>
<div class="footer-icons">
<a href="https://www.instagram.com/enigma_vssut/"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/enigma-vssut/mycompany/"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/Hritesh49/Anime-Web-App"><i class="fa fa-github"></i></a>
</div>
</div>
<p class="footer-company-name">Web Decoders © 2023</p>
</footer>
</body>
</html>