chohj06ms commited on
Commit
43ebfb6
1 Parent(s): 01c169c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +13 -37
index.html CHANGED
@@ -1,45 +1,21 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Shop</title>
7
- <script src="https://cdn.tailwindcss.com"></script>
8
- <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
9
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
10
- <style>
11
- .gallery img {
12
- filter: blur(4px);
13
- }
14
- </style>
15
  </head>
16
- <body class="bg-gray-900 text-white font-sans">
17
- <div class="max-w-sm mx-auto py-10">
18
- <div class="flex justify-between items-center px-4">
19
- <a href="#" class="text-gray-400"><i class="fas fa-arrow-left"></i></a>
20
- <h1 class="text-lg font-bold">Shop</h1>
21
- <span class="bg-gray-700 text-gray-400 rounded-full px-3 py-1">144</span>
22
- </div>
23
 
24
- <div class="bg-gray-800 p-5 mt-5 rounded-lg text-center">
25
- <h2 class="text-red-500 text-3xl font-bold mb-3">Cream01 Double</h2>
26
- <div class="flex justify-center gap-2 gallery mb-3">
27
- <img src="https://placehold.co/50x50" alt="Placeholder image of a person wearing a cap" class="rounded">
28
- <img src="https://placehold.co/50x50" alt="Placeholder image of a person with headphones" class="rounded">
29
- <img src="https://placehold.co/50x50" alt="Placeholder image of a smiling person" class="rounded">
30
- <!-- More placeholder images as needed -->
31
- </div>
32
- <img src="https://placehold.co/150x200" alt="Placeholder image of a product pack" class="mx-auto mb-3">
33
- <div class="text-gray-400 mb-5">321Z (1 type)</div>
34
- <div class="text-xl font-bold mb-3">KRW 4,400</div>
35
- <button class="bg-purple-600 py-3 px-6 rounded text-lg text-white">Objekt 구매하기</button>
36
- </div>
37
-
38
- <div class="flex justify-center space-x-2 mt-10">
39
- <span class="block w-2 h-2 bg-gray-600 rounded-full"></span>
40
- <span class="block w-2 h-2 bg-gray-600 rounded-full"></span>
41
- <span class="block w-2 h-2 bg-gray-600 rounded-full"></span>
42
- </div>
43
  </div>
 
 
 
44
  </body>
45
  </html>
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Slider</title>
7
+ <link rel="stylesheet" href="style.css">
 
 
 
 
 
 
 
8
  </head>
9
+ <body>
 
 
 
 
 
 
10
 
11
+ <div class="slider-container">
12
+ <div class="slider">
13
+ <div class="slide" id="slide-1">1</div>
14
+ <div class="slide" id="slide-2">2</div>
15
+ <div class="slide" id="slide-3">3</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  </div>
17
+ </div>
18
+
19
+ <script src="script.js"></script>
20
  </body>
21
  </html>