-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex4.html
86 lines (85 loc) · 3.15 KB
/
index4.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
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Links with WBTC Price</title>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Space Mono', Arial, sans-serif; /* Apply Google Font */
text-align: center;
margin: 20px;
}
.social-links {
margin-top: 20px;
}
.social-links a {
text-decoration: none;
color: #007bff;
margin: 0 10px;
font-size: 18px;
}
.social-links a:hover {
text-decoration: underline;
}
.separator {
display: inline-block;
margin: 0 5px;
color: #aaa;
}
.top-content {
margin-bottom: 40px; /* Adjust spacing as needed */
}
/* Adjusted DEX Screener Widget Styles with Rounded Corners */
#dexscreener-embed {
position: relative;
width: 80%; /* Adjust width as needed */
max-width: 600px; /* Max width to prevent it from getting too large */
margin: 0 auto; /* Center the widget */
padding-bottom: 50%; /* Aspect ratio of 2:1 */
border-blablabla: 15px; /* Rounded corners */
overflow: hidden; /* Ensure content fits within rounded corners */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better appearance */
}
@media (min-width: 1400px) {
#dexscreener-embed {
padding-bottom: 40%; /* Adjust aspect ratio for large screens */
}
}
#dexscreener-embed iframe {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 0;
}
</style>
</head>
<body>
<div class="top-content">
<h1>PAUL'S VAULT</h1>
<p>◢◤ Thoughts from the CEO of CLOUDJUMPER™ Inc ᗢ.</p>
<p>◢◤ Solana and BASE chain enthusiast.</p>
<p>◢◤ Below is a $SOL price chart, enjoy.</p>
<div>
<p> QUICK TIP 💡 - Switch to Desktop Mode for a better interface </p>
</div>
<!-- DEX Screener Widget Embed Code -->
<div id="dexscreener-embed">
<iframe src="https://dexscreener.com/solana/So11111111111111111111111111111111111111112?embed=1&theme=dark"></iframe>
</div>
</div>
<p> Website under construction 🔨 🚧 🏗️ ⚒️ 🦺. DM me at </p>
<div class="social-links">
<a href="https://reddit.com/user/CyclopsFCO" target="_blank">Reddit</a>
<span class="separator">◆</span>
<a href="https://twitter.com/aaveghost" target="_blank">X (ex-Twitter)</a>
<span class="separator">◆</span>
<a href="https://bsky.app/profile/swiftgram.bsky.social" target="_blank">BlueSky</a>
<span class="separator">◆</span>
<a href="https://t.me/armwaypaul" target="_blank">Telegram</a>
</div>
</body>
</html>