-
Notifications
You must be signed in to change notification settings - Fork 2
/
challenges.html
112 lines (108 loc) · 4.63 KB
/
challenges.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
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
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Challenges</title>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./src/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./src/images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Roboto Mono', monospace;
background-color: #f8f9fa;
}
.challenge-card {
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
background-color: #fff;
}
.challenge-card h5 {
color: #28a745;
}
.btn-start-challenge {
background-color: #28a745;
color: white;
}
.btn-start-challenge:hover {
background-color: #218838;
}
</style>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-12 text-center">
<h1>Code Tasks</h1>
<p class="lead">Improve your skills with our coding challenges. Try to solve the problems</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card challenge-card">
<h5>HTML Challenge</h5>
<p>Create a webpage that displays your favorite quote in a styled container with a background image.</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
<div class="col-md-4">
<div class="card challenge-card">
<h5>CSS Challenge</h5>
<p>Design a layout with a header, sidebar, and content area using CSS Grid or Flexbox.</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
<div class="col-md-4">
<div class="card challenge-card">
<h5>JavaScript Challenge</h5>
<p>Build a to-do list app that lets users add and remove tasks dynamically with JavaScript.</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
<div class="col-md-4">
<div class="card challenge-card">
<h5>Responsive Design Challenge</h5>
<p>Create a webpage that is fully responsive and looks great on mobile, tablet, and desktop.</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
<div class="col-md-4">
<div class="card challenge-card">
<h5>CSS Animation Challenge</h5>
<p>Create an animated button that changes color and has a hover effect using CSS animations.</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
<div class="col-md-4">
<div class="card challenge-card">
<h5>JavaScript Calculator Challenge</h5>
<p>Build a basic calculator that performs addition, subtraction, multiplication, and division.</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
<div class="col-md-4">
<div class="card challenge-card">
<h5>Form Validation Challenge</h5>
<p>Create a form with input fields and validate the input using JavaScript (e.g., required fields, email format).</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
<div class="col-md-4">
<div class="card challenge-card">
<h5>JSON Parsing Challenge</h5>
<p>Write a JavaScript function that parses JSON data and displays it on a webpage.</p>
<a href="editor.html" class="btn btn-start-challenge">Start Challenge</a>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>