oddhtml / index.html
chohj06ms's picture
Update index.html
c5ba53f verified
raw
history blame
No virus
2.26 kB
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
/* Additional styles if needed */
</style>
</head>
<body class="bg-black text-white font-sans">
<div class="h-screen flex flex-col items-center justify-center">
<!-- Header with Shop title and coin balance -->
<header class="flex items-center justify-between w-full px-4 py-2">
<a href="#" class="text-white text-lg"><i class="fas fa-arrow-left"></i></a>
<span class="text-white text-lg">Shop</span>
<div class="flex items-center">
<span class="text-white text-lg">144</span>
<i class="fas fa-coins ml-2 text-yellow-300"></i>
</div>
</header>
<!-- Product Slider -->
<div class="flex flex-col items-center">
<div class="my-6">
<!-- Slider will go here -->
<!-- Placeholder for slider functionality, replace with your slider implementation -->
</div>
<!-- Product Details -->
<div class="text-center mb-6">
<h2 class="text-2xl font-bold mb-2">EMBLE A Ver.</h2>
<p class="text-red-600 text-xl mb-1">Cream01 Double</p>
<div class="flex items-center justify-center space-x-2">
<span class="bg-gray-700 text-white py-1 px-3 rounded-full text-sm">Double</span>
<span class="text-gray-400 text-sm">32OZ (1 type)</span>
</div>
<div class="flex mt-4">
<!-- Image placeholders -->
<!-- Replace with your image slider/carousel -->
</div>
<p class="text-gray-400 text-lg my-4">KRW 4,400</p>
<button class="bg-purple-700 px-6 py-2 rounded-full text-white font-bold">Objekt 구매하기</button>
</div>
</div>
<!-- Navigation dots for the slider -->
<div class="flex items-center justify-center space-x-2">
<span class="h-2 w-2 bg-gray-600 rounded-full"></span>
<span class="h-2 w-2 bg-gray-600 rounded-full"></span>
<span class="h-2 w-2 bg-white rounded-full"></span>
</div>
</div>
</body>
</html>