forked from opensource-society/CodeClip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackendChallenges.html
More file actions
55 lines (52 loc) · 1.92 KB
/
backendChallenges.html
File metadata and controls
55 lines (52 loc) · 1.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Backend Basics Challenges</title>
<style>
body { font-family: 'Segoe UI', sans-serif; background: #fefefe; padding: 2rem; }
h1 { color: #2d3748; }
p.description { color: #4a5568; margin-bottom: 2rem; }
.challenge-list { display: grid; gap: 1.2rem; }
.challenge {
background: white;
padding: 1rem 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
transition: 0.3s ease;
}
.challenge:hover {
transform: translateY(-3px);
box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.challenge-title { font-weight: 600; color: #e53e3e; }
.challenge-desc { color: #718096; font-size: 0.95rem; }
</style>
</head>
<body>
<h1>Backend Basics Challenges</h1>
<p class="description">Start your backend journey by completing these API and server-side logic tasks:</p>
<div class="challenge-list">
<div class="challenge">
<div class="challenge-title">Simple API Server</div>
<div class="challenge-desc">Create a basic Express or Flask API that returns JSON data.</div>
</div>
<div class="challenge">
<div class="challenge-title">Form Submission Backend</div>
<div class="challenge-desc">Accept and store form data sent from a frontend using POST.</div>
</div>
<div class="challenge">
<div class="challenge-title">User Auth Basics</div>
<div class="challenge-desc">Implement simple login/signup logic using sessions or JWT.</div>
</div>
<div class="challenge">
<div class="challenge-title">CRUD with SQLite</div>
<div class="challenge-desc">Build a Create/Read/Update/Delete API for a todo app.</div>
</div>
<div class="challenge">
<div class="challenge-title">API Documentation</div>
<div class="challenge-desc">Use Swagger or Postman to document your API endpoints.</div>
</div>
</div>
</body>
</html>