-
Notifications
You must be signed in to change notification settings - Fork 1
/
quiz.html
53 lines (50 loc) · 2.75 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Programming Language Quiz</title>
<!-- Include Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="logo/fav.jpeg">
</head>
<body class="bg-gray-100">
<div class="container mx-auto py-8">
<h1 class="text-3xl font-bold text-center mb-8">Programming Language Quiz</h1>
<form action="/quiz" method="post">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Card for Programming Language 1 -->
<div class="bg-white rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold mb-4">C Quiz</h2>
<p class="text-gray-700 mb-4">Test your knowledge in C programming language.</p>
<a href="/c_quiz.html"
class="block bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-md text-center">Start
Quiz</a>
</div>
<div class="bg-white rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold mb-4">C++ Quiz</h2>
<p class="text-gray-700 mb-4">Test your knowledge in cpp programming language.</p>
<a href="/cpp_quiz.html"
class="block bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-md text-center">Start
Quiz</a>
</div>
<div class="bg-white rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold mb-4">Java Quiz</h2>
<p class="text-gray-700 mb-4">Test your knowledge in Java programming language.</p>
<a href="/java_quiz.html"
class="block bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-md text-center">Start
Quiz</a>
</div>
<div class="bg-white rounded-lg shadow-md p-6">
<h2 class="text-xl font-semibold mb-4">Python Quiz</h2>
<p class="text-gray-700 mb-4">Test your knowledge in Python programming language.</p>
<a href="/python_quiz.html"
class="block bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-md text-center">Start
Quiz</a>
</div>
<!-- Add more cards for other programming languages -->
</div>
</form>
</div>
</body>
</html>