-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 856 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 856 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<base href="https://sahimbehlim.github.io/Javascript-Mini-Projects/" />
<link
href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css"
rel="stylesheet"
/>
<title>JavaScript Mini Projects</title>
</head>
<body class="bg-gray-700">
<section class="flex flex-col gap-6 items-center p-6 sm:p-4 text-white">
<h1 class="text-3xl">JavaScript Mini Projects</h1>
<!-- Projects -->
<div
class="grid sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4 projects-wrapper"
></div>
</section>
<script src="data.js"></script>
<script src="script.js"></script>
</body>
</html>