deedrop1140 commited on
Commit
1ea6303
·
verified ·
1 Parent(s): bba77f4

Create about.html

Browse files
Files changed (1) hide show
  1. templates/about.html +17 -0
templates/about.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% extends "layout.html" %}
2
+ {% block content %}
3
+
4
+ <h1 class="text-3xl font-bold mb-4">About This Platform</h1>
5
+
6
+ <p class="text-gray-700 leading-relaxed">
7
+ This platform is built to explain machine learning algorithms in a clear and structured way.
8
+ It covers supervised, unsupervised, semi-supervised, reinforcement learning, ensemble methods,
9
+ and optimization techniques for students and beginners.
10
+ </p>
11
+
12
+ <p class="text-gray-700 mt-4 leading-relaxed">
13
+ The goal is to provide conceptual understanding with practical explanations,
14
+ without requiring login or personal data.
15
+ </p>
16
+
17
+ {% endblock %}