forked from hanghae-plus/front_6th_chapter2-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.advanced.html
More file actions
47 lines (47 loc) · 1.37 KB
/
index.advanced.html
File metadata and controls
47 lines (47 loc) · 1.37 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hanghae Shopping Cart</title>
<!-- Note: Tailwind CDN is for development only. For production, use PostCSS or Tailwind CLI -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: [
'-apple-system',
'BlinkMacSystemFont',
'Helvetica Neue',
'Arial',
'sans-serif',
],
},
letterSpacing: {
'extra-wide': '0.3em',
'super-wide': '0.25em',
},
fontSize: { '2xs': '0.625rem' },
maxHeight: { 800: '800px' },
backgroundImage: {
'gradient-black': 'linear-gradient(135deg, #000 0%, #333 100%)',
},
},
},
};
</script>
</head>
<body
class="bg-gray-50 text-black antialiased overflow-hidden h-screen text-sm"
>
<div
id="app"
class="max-w-screen-xl h-screen max-h-800 mx-auto p-8 flex flex-col"
>
<!-- Content will be dynamically generated here -->
</div>
<script type="module" src="./src/advanced/main.advanced.js"></script>
</body>
</html>