Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddhartha6909 authored Dec 15, 2024
1 parent ba7dd45 commit 6d4f1cb
Show file tree
Hide file tree
Showing 11 changed files with 1,935 additions and 783 deletions.
88 changes: 88 additions & 0 deletions about.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Anito</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}
.container {
max-width: 900px;
margin: 2rem auto;
padding: 1rem;
background: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1, h2 {
color: #444;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
background: #333;
color: #fff;
}
</style>
</head>
<body>

<?php include 'header.html'; ?>

<main class="container">
<h2>Website Details</h2>
<p>Welcome to <strong>Anito</strong>, a platform built for anime lovers! This website is designed to let users watch and explore anime series with ease. We fetch content dynamically using APIs and provide features like most popular anime, scheduled releases, and related recommendations.</p>
<p><strong>Disclaimer:</strong> This website is created for fun and educational purposes. It is not intended for professional or commercial use. The author and developers are not responsible for any misuse of this website or its content. Use it at your own discretion.</p>

<h2>Author</h2>
<p><strong>Name:</strong> Siddhartha Tiwari</p>
<p><strong>GitHub:</strong> <a href="https://github.com/Siddhartha6909" target="_blank">github.com/Siddhartha6909</a></p>
<p>The project was developed as a fun way to explore web development, learn API integration, and create a platform for anime enthusiasts. It's not associated with any professional anime streaming services.</p>

<h2>About the Website</h2>
<ul>
<li><strong>Purpose:</strong> Explore anime details, find schedules, and enjoy seamless browsing of anime series.</li>
<li><strong>Technology Used:</strong> PHP, HTML, CSS, JavaScript, and dynamic APIs for fetching anime data.</li>
<li><strong>Features:</strong>
<ul>
<li>Explore most popular anime</li>
<li>View schedules and episodes</li>
<li>Dynamic anime recommendations</li>
<li>Promotional videos and detailed info</li>
<li>Favorites and sharing options</li>
</ul>
</li>
</ul>

<h2>Note</h2>
<p>This is a hobby project, and the data used is sourced from external APIs. We do not host or claim ownership of any anime content.</p>
</main>

<footer>
<p>&copy; <?= date('Y') ?> Anito | Developed by <a href="https://github.com/Siddhartha6909" target="_blank">Siddhartha Tiwari</a></p>
</footer>

</body>
</html>
Loading

0 comments on commit 6d4f1cb

Please sign in to comment.