-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | Javasscript 2</title>
<link href="assets/tailwind.min.css" rel="stylesheet" />
<link href="assets/base.css" rel="stylesheet" />
<link rel="icon" href="data:;base64,=" />
</head>
<body class="flex flex-col gap-y-10">
<div class="bg-white shadow-lg">
<div class="max-w-7xl mx-auto p-6 sm:px-6 lg:px-8">
<div class="flex items-center">
<span class="font-light">The MA1 submission for Javascript 2.</span>
</div>
</div>
</div>
<div class="relative">
<div class="max-w-7xl mx-auto p-6 sm:px-6 lg:px-8">
<div class="flex flex-col gap-y-4 sm:flex-row sm:justify-between">
<h1 class="text-4xl font-bold">Products</h1>
<div class="relative flex items-center group">
<div
class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none "
>
<svg
viewBox="0 0 24 24"
width="20"
height="20"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
fill="none"
shape-rendering="geometricPrecision"
style="color: var(--accents-4)"
>
<path
d="M11 17.25a6.25 6.25 0 110-12.5 6.25 6.25 0 010 12.5z"
/>
<path d="M16 16l4.5 4.5" />
</svg>
</div>
<input
class="bg-white inline-flex w-full h-10 border border-accents-2 focus:border-black rounded-md transition duration-150 pl-10 pr-3 rounded-md focus:outline-none"
type="search"
id="search"
placeholder="Search..."
/>
</div>
</div>
<div
class="mt-8 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8"
id="result"
>
<div id="loading">Loading...</div>
</div>
</div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>