diff --git a/backendChallenges.html b/backendChallenges.html
index d933950..1b1962a 100644
--- a/backendChallenges.html
+++ b/backendChallenges.html
@@ -18,35 +18,45 @@
Backend Basics Challenges
Create a basic Express or Flask API that returns JSON data.
- Explore more
+
+ Explore more
Form Submission Backend
Accept and store form data sent from a frontend using POST.
-
Explore more
+
+ Explore more
User Auth Basics
Implement simple login/signup logic using sessions or JWT.
-
Explore more
+
+ Explore more
CRUD with SQLite
Build a Create/Read/Update/Delete API for a todo app.
-
Explore more
+
+ Explore more
API Documentation
Use Swagger or Postman to document your API endpoints.
-
Explore more
+
+ Explore more
+ Challenge: Create a Simple API Server
+
+
+
Objective
+
+ Build a basic API server using Express (Node.js) or Flask (Python). The
+ API should return JSON data and provide at least one endpoint.
+
+
+
Key Features to Implement
+
+ -
+ Basic Server Setup:
+
+ -
+ Use Express (JavaScript) or Flask (Python) to create a server.
+
+ -
+ Run the server locally on a specific port (e.g., 3000 or 5000).
+
+
+
+ -
+ Endpoints:
+
+ -
+ Create a root endpoint (
/) that returns a welcome
+ message in JSON.
+
+ -
+ Add at least one more endpoint (e.g.,
/users or
+ /products) that returns sample data in JSON format.
+
+
+
+ -
+ JSON Response:
+
+ - Return properly formatted JSON objects/arrays.
+ -
+ Include multiple fields like
id, name,
+ price, etc. for practice.
+
+
+
+ -
+ Optional Enhancements:
+
+ -
+ Add query parameters (e.g.,
/users?id=1 to fetch a
+ specific user).
+
+ - Add error handling (e.g., return 404 if data not found).
+ - Enable CORS so the API can be consumed by frontend apps.
+
+
+
+
+
Tools & Techniques to Practice:
+
+ - Node.js + Express or Python + Flask.
+ - JSON formatting and response handling.
+ - REST API basics (endpoints, status codes, parameters).
+
+
+
Challenge Goals
+
+ - Learn how to set up a simple backend server.
+ - Understand how to return JSON responses.
+ - Build a foundation for creating more advanced REST APIs.
+
+
+
diff --git a/backendChallenges1.html b/backendChallenges1.html
new file mode 100644
index 0000000..d90798d
--- /dev/null
+++ b/backendChallenges1.html
@@ -0,0 +1,83 @@
+
+
+