-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
75 lines (71 loc) · 2.98 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AnimeBookZ</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<style>
body {
background-image: url("see.gif");
background-size: cover;
background-position: left;
background-repeat: no-repeat;
}
.container {
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
}
h2, p {
color: #ffffff;
-webkit-text-stroke-width: 0.5px;
-webkit-text-stroke-color: transparent;
}
</style>
</head>
<body class="d-flex flex-column min-vh-100">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">
<img src="logo.png" alt="Aniformation Logo" class="navbar-logo">
</a>
<a class="nav-link ml-auto" href="search.html">
<img src="search-icon.png" alt="Search" width="30" height="30">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href=""></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="manga.html">Manga</a>
</li>
<li class="nav-item">
<a class="nav-link" href="quotes.html">quotes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="container mt-4">
<h2>About AnimeBookZ</h2>
<p>AnimeBookZ is a platform dedicated to providing information about anime. Our goal is to help anime enthusiasts discover new shows, explore their favorite series, and stay up-to-date with the latest trends in the anime world.</p>
<p>Whether you're a seasoned anime fan or new to the genre, AnimeBookZ offers a comprehensive search feature that allows you to find detailed information about various anime and manga titles, including their synopsis, popularity, episode count, score, and more.</p>
<p> it also has different sets of features to explore manga, anime quotes.</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.3/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"></script>
</body>
</html>