-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
79 lines (74 loc) · 3.17 KB
/
index.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>OMNOM</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link href="index.css" rel="stylesheet">
</head>
<body>
<div class="container p-3">
<div class="row">
<div class="col text-end">
<button id="btn-telegram" type="button" class="btn btn-outline-info me-3">Join Telegram</button>
<button id="btn-trade-1" type="button" class="btn btn-outline-info">Trade on DogeSwap</button>
</div>
</div>
<div class="row">
<div class="col title fs-1 text-center mt-5">
<span>D</span><span>o</span><span>g</span><span>e</span>
<span>E</span><span>a</span><span>t</span>
<span>D</span><span>o</span><span>g</span><span>e</span>
</div>
</div>
<div class="row">
<div class="col subtitle fs-3 text-center mt-1 mb-5">
(OMNOM)
</div>
</div>
<div class="row mb-5">
<div class="col text-center">
<img src="doge.gif" />
</div>
</div>
<div class="row">
<div class="col text-center fs-5 mb-5">
Let's eat SHIB for breakfast
</div>
</div>
<div class="row">
<div class="col-lg-4 mb-4 text-center">
Shiba Inu (SHIB) is an ERC20 meme token that was created to kill Dogecoin. Doge Eat Doge (OMNOM) is
fighting back - get the first meme token on Dogechain to eat SHIB.
</div>
<div class="col-lg-4 mb-4 text-center">
69% of the OMNOM supply has been burned to Vitalik Buterin (Ethereum founder) on Dogechain. As long as
he doesn't join Dogechain, we'll be alright.
</div>
<div class="col-lg-4 mb-4 text-center">
31% of the OMNOM supply has been added to a pool on DogeSwap.org.
</div>
</div>
<div class="row mt-3 mb-5">
<div class="col text-center fst-italic">
This is a community parody project created for a laugh. Maybe it will eventually become something, but
buying the token could result in 100% loss. There is no "team" allocation of this token, and no
guarantee of any future development.
</div>
</div>
<div class="row">
<div class="col text-center">
<button id="btn-trade-2" type="button" class="btn btn-lg btn-info text-white">Trade on DogeSwap</button>
</div>
</div>
</div>
<script>
const createLinkButton = (id, url) => document.getElementById(id)
.addEventListener("click", () => window.open(url, "_blank"));
createLinkButton("btn-trade-1", "https://dogeswap.org");
createLinkButton("btn-trade-2", "https://dogeswap.org");
createLinkButton("btn-telegram", "https://t.me/+pEeEw79HKZBkMDhi");
</script>
</body>
</html>