tarot / index.html
wadim's picture
Upload index.html
e5f4d81 verified
Raw
History Blame Contribute Delete
468 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Draggable and Flippable Cards</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<button id="shuffleButton">Shuffle</button>
<div id="cardContainer">
<!-- Cards will be injected here by JavaScript -->
</div>
<script src="scripts.js"></script>
</body>
</html>