-
Notifications
You must be signed in to change notification settings - Fork 3
/
listing.php
94 lines (76 loc) · 3.1 KB
/
listing.php
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
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plata listing</title>
<style>
*
{
text-align: center;
}
html, body {
background-image: linear-gradient(90deg, #EBECF0 0%, #E5E4E2 35%, #EBECF0 100%);
/*background-color: #EBECF0;*/
font-family: 'Montserrat';
font-size: 13px;
overflow-x: hidden;
margin:0px;
padding:0px;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
table {
/*border: 1px solid black;
border-collapse: collapse;*/
width: 90%;
margin-left: auto;
margin-right: auto;
}
img {
object-fit: scale-down;
height:45px;
}
th, td {
text-align: center;
}
</style>
</head>
<body>
<section id="AnchorDYORmobile">
<h1><img src="images/PlataTokenIconSmall.svg"> Plata Token Listing Places</h1>
<table>
<tr>
<td><img src="images/poocoinLogo.svg" onmouseover="this.src='images/poocoinLogoOR.svg';" onmouseout="this.src='images/poocoinLogo.svg';"/></td>
<td><img src="images/nomicsLogo.svg" onmouseover="this.src='images/nomicsLogoOR.svg';" onmouseout="this.src='images/nomicsLogo.svg';"/></td>
</tr>
<tr>
<td><img src="images/dexScreenerLogo.svg" onmouseover="this.src='images/dexScreenerLogoOR.svg';" onmouseout="this.src='images/dexScreenerLogo.svg';"/></td>
<td><img src="images/dextoolsLogo.svg" onmouseover="this.src='images/dextoolsLogoOR.svg';" onmouseout="this.src='images/dextoolsLogo.svg';"/></td>
</tr>
<tr>
<td><img src="images/bitKeepLogo.svg" onmouseover="this.src='images/bitKeepLogoOR.svg';" onmouseout="this.src='images/bitKeepLogo.svg';"/></td>
<td><img src="images/tokenSnifferLogo.svg" onmouseover="this.src='images/tokenSnifferLogoOR.svg';" onmouseout="this.src='images/tokenSnifferLogo.svg';"/></td>
</tr>
<tr>
<td><img src="images/geckoTerminalLogo.svg" onmouseover="this.src='images/geckoTerminalLogoOR.svg';" onmouseout="this.src='images/geckoTerminalLogo.svg';"/></td>
<td><img src="images/goplusLogo.svg" onmouseover="this.src='images/goplusLogoOR.svg';" onmouseout="this.src='images/goplusLogo.svg';"/></td>
</tr>
<tr>
<td><img src="images/top100TokenLogo.svg" onmouseover="this.src='images/top100TokenLogoOR.svg';" onmouseout="this.src='images/top100TokenLogo.svg';"/></td>
<td></td>
</tr>
</table>
<table>
<td>
<h1>Always do Your Own Research</h1>
<p>
We are supporting the independent audit and indexes to prove Plata Token is meeting the criteria for safety. To make it easier for you, the user, we are providing all links, where we have a partnership to show up $PLT is doing great. DYOR.
</p>
</td>
</table>
</section>
</body>
</html>