blob: 100108c3f2bfa998546e74a374c4d300ae3ab4d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Buy Monster Poker</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {},
},
};
</script>
</head>
<body class="bg-cyan-900 container mx-auto">
<h1 class="text-cyan-300 text-6xl text-center pt-10">
<a class="hover:underline"
href="https://monsterpoker.myshopify.com/products/monster-poker-republic">
Buy Monster Poker <b>today</b>!
</a>
</h1>
</body>
</html>
|