forked from alscheift/turing-simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (82 loc) · 4.74 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Turing</title>
<!-- Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="../css/scrollbar.css" />
</head>
<body class="bg-gray-100">
<div class="flex flex-col items-center justify-center min-h-screen">
<div class="p-5 mb-10 text-center">
<h1 class="text-3xl font-medium">Turing Machine</h1>
<h1 class="text-3xl font-medium">Simulation</h1>
</div>
<main>
<div class="grid grid-cols-3 gap-8">
<a href="operation/Addition.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Addition</h2>
<p class="card-description text-sm text-gray-700">Perform addition operations.</p>
</div>
</a>
<a href="operation/Subtraction.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Subtraction</h2>
<p class="card-description text-sm text-gray-700">Perform subtraction operations.</p>
</div>
</a>
<a href="operation/Multiplication.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Multiplication</h2>
<p class="card-description text-sm text-gray-700">Perform multiplication operations.</p>
</div>
</a>
<a href="operation/Division.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold ">Division</h2>
<p class="card-description text-sm text-gray-700">Perform division operations.</p>
</div>
</a>
<a href="operation/Exponent.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Exponent</h2>
<p class="card-description text-sm text-gray-700">Perform exponent operations.</p>
</div>
</a>
<a href="operation/BinaryLogarithm.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Binary Logarithm</h2>
<p class="card-description text-sm text-gray-700">Perform binary logarithm operations.</p>
</div>
</a>
<a href="operation/SquareRoot.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Square Root</h2>
<p class="card-description text-sm text-gray-700">Perform square root operations.</p>
</div>
</a>
<a href="operation/Factorial.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Factorial</h2>
<p class="card-description text-sm text-gray-700">Perform factorial operations.</p>
</div>
</a>
<a href="operation/Custom.html" class="card-link">
<div class="card bg-white p-3 rounded-xl hover:bg-indigo-100 hover:shadow-md">
<h2 class="card-title text-lg text-gray-900 font-semibold">Custom</h2>
<p class="card-description text-sm text-gray-700">Perform custom operations.</p>
</div>
</a>
</div>
</main>
<footer class="mt-10 text-center text-gray-500">
<h5>© 2023 Kelompok 3 TBA. All rights reserved.</h5>
</footer>
</div>
<script src="../tailwind.config.js"></script>
</body>
</html>