-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="./tailwind-sandbox/tailwind.js"></script>
<title>Front-End Challenges</title>
</head>
<body>
<!-- Global Container -->
<div
class="flex flex-col p-10 item-center justify-center min-h-screen bg-gradient-to-r from-[#1A1C23] via-[#232530] to-[#1A1C23]"
>
<a
href="./index.html"
class="flex mx-auto text-[#FAB28E] font-bold text-3xl m-5"
>
Front-End Challenges
</a>
<!-- Card Container -->
<div
class="mx-auto p-12 border border-[#27D796] border-4 shadow-2xl rounded-3xl bg-[#2E303E] space-y-10"
>
<!-- Projects Container -->
<div
id="project-container"
class="grid gap-4 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3 lx:grid-cols-4"
></div>
</div>
</div>
<script type="module" src="./main.js"></script>
</body>
</html>