modified: templates/contact.html modified: templates/faq.html modified: templates/help.html modified: templates/navbar.html
50 lines
1.8 KiB
HTML
50 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FAQ</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #f7f7f7;
|
|
}
|
|
.hero {
|
|
background-color: #ffc107;
|
|
color: white;
|
|
padding: 50px 0;
|
|
text-align: center;
|
|
}
|
|
.faq-list {
|
|
margin: 50px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'navbar.html' %}
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Frequently Asked Questions</h1>
|
|
<p class="lead">Find answers to the most common questions about Multus Bot.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="container faq-list">
|
|
<h2>FAQ</h2>
|
|
<ul class="list-group">
|
|
<li class="list-group-item"><strong>What is Multus Bot?</strong> Multus Bot is an AI-powered Discord bot created by SimolZimol, available exclusively on the Ludi et Historia server.</li>
|
|
<li class="list-group-item"><strong>How do I use Multus Bot?</strong> You can use Multus Bot by joining the Ludi et Historia server and interacting with its features.</li>
|
|
<li class="list-group-item"><strong>Who can I contact for support?</strong> If you need help, contact SimolZimol on Discord via <strong>@simolzimol</strong>.</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<footer class="text-center py-3">
|
|
<p>© 2024 Multus Bot. All rights reserved.</p>
|
|
</footer>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|