forked from opensource-society/CodeClip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontendChallenges.html
More file actions
100 lines (93 loc) · 2.73 KB
/
frontendChallenges.html
File metadata and controls
100 lines (93 loc) · 2.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Frontend Challenges</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f8f9fc;
margin: 0;
padding: 2rem;
}
h1 {
color: #2d3748;
margin-bottom: 0.5rem;
}
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: #2b6cb0;
margin-bottom: 0.4rem;
}
.challenge-desc {
color: #718096;
font-size: 0.95rem;
}
.explorebtn {
margin-top: 0.5rem;
padding: 0.3rem 0.8rem;
background-color: #0778f1;
color: white;
border-radius: 8px;
text-align: right;
cursor: pointer;
transition: background-color 0.3s ease;
font-size: 0.92rem;
float: right;
}
.explorebtn:hover {
background-color: #034081;
}
</style>
</head>
<body>
<h1>Frontend Challenges</h1>
<p class="description">Sharpen your HTML, CSS, and JavaScript skills with these real-world UI building tasks:</p>
<div class="challenge-list">
<div class="challenge">
<div class="challenge-title">Responsive Navbar</div>
<div class="challenge-desc">Build a responsive navigation bar with a hamburger menu for mobile view.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Pricing Card</div>
<div class="challenge-desc">Design and code a modern pricing card layout using flexbox or grid.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Login Form UI</div>
<div class="challenge-desc">Create a stylish login/signup form with smooth transitions.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Landing Page</div>
<div class="challenge-desc">Design a hero section with a call-to-action button and a background image.</div>
<div class="explorebtn"> Explore more </div>
</div>
<div class="challenge">
<div class="challenge-title">Image Gallery</div>
<div class="challenge-desc">Make a responsive image gallery that adjusts across devices using CSS Grid.</div>
<div class="explorebtn"> Explore more </div>
</div>
</div>
</body>
</html>