-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LazyLlama</title>
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<style>
body {
font-family: Comic Sans MS, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
margin: 0;
padding: 20px;
}
img {
max-width: 200px;
margin-bottom: 20px;
}
header, footer {
background-color: #ddd;
padding: 10px;
}
.content {
margin-top: 50px;
}
.section {
margin-bottom: 30px;
}
footer {
margin-top: 30px;
}
</style>
</head>
<body>
<header>
<h1>LazyLlama</h1>
</header>
<div class="content">
<img src="https://raw.githubusercontent.com/justhobbyman/LazyLlama/main/lazyllama.png" alt="LazyLlama Logo">
<div class="section">
<h2>LazyLlama (LLMA)</h2>
<p>The most laid-back meme token on Solana.</p>
</div>
<div class="section">
<h2>How to Buy</h2>
<p>1. Get a wallet.</p>
<p>2. Buy some SOL.</p>
<p>3. Swap for LLMA.</p>
</div>
<div class="section">
<h2>Roadmap</h2>
<p>Q1: Launch Token on Major CEX</p>
<p>Q2: No idea, I'm tired.</p>
<p>Q3: Lazy Meme over the world</p>
</div>
</div>
<footer>
<p>© 2024 LazyLlama. Follow us on <a href="https://twitter.com/LazyLlama" target="_blank">Twitter</a> and <a href="https://t.me/LazyLlama" target="_blank">Telegram</a></p>
</footer>
</body>
</html>