-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
69 lines (63 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IntrepidBird | Gauss</title>
<!-- Favicon -->
<link rel="icon" href="favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<!-- Header Section -->
<header class="bg-dark text-white text-center p-4">
<h1>Gauss Mathematical Discord Bot + Application</h1>
<p>A bot that solves complex mathematical problems for you!</p>
<a href="https://github.com/intrepidbird/gauss/" class="btn btn-primary">GitHub Repository</a>
</header>
<!-- Features Section -->
<section id="features" class="container mt-5">
<div class="row">
<div class="col-md-4">
<h3>Problem Solving</h3>
<p>The bot can solve a wide range of mathematical problems, including algebra, calculus, and more.</p>
</div>
<div class="col-md-4">
<h3>Quick Responses</h3>
<p>The bot provides instant responses to your mathematical queries, saving you time and effort.</p>
</div>
<div class="col-md-4">
<h3>AI Incorporation</h3>
<p>Simply type any mathematical problem in the chat and AI will quickly respond with a short and accurate answer.</p>
</div>
</div>
</section>
<!-- Discord Bot Image -->
<section id="discord-bot" class="text-center mt-5">
<img src="mathcounts.jpg" alt="Image" width="1200">
</section>
<!-- Contact Form -->
<section id="contact" class="container mt-5">
<h2>Contact Us</h2>
<form id="contactForm">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" id="name" placeholder="Enter name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Enter email" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea class="form-control" id="message" placeholder="Enter your message" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</section>
<!-- Bootstrap & jQuery JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>