-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MinecrackedXD</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="header-container">
<img src="minecracked_logo.png" alt="MinecrackedXD Logo" class="logo">
<h1>MinecrackedXD</h1>
</div>
</header>
<main>
<section class="links">
<div class="link">
<img src="discord_logo.png" alt="Discord Logo" class="icon">
<button onclick="window.open('https://discord.gg/NTGQhjJhyZ', '_blank')">Discord</button>
</div>
<div class="link">
<img src="youtube_logo.png" alt="YouTube Logo" class="icon">
<button onclick="window.open('https://youtube.com/@minecrackedxd', '_blank')">YouTube</button>
</div>
</section>
<section class="bookmarklet">
<h2>Enter JavaScript</h2> <!-- Updated text here -->
<textarea id="inputBox" placeholder="Enter your JavaScript code here..."></textarea>
<button id="generateButton" onclick="generateBookmarklet()">Generate Bookmarklet</button>
<h2>Bookmarklet Code</h2>
<textarea id="outputBox" readonly></textarea>
<button id="copyButton" style="display: none;" onclick="copyCode()">Copy Code</button>
</section>
</main>
<footer>
<p>© 2024 MinecrackedXD</p>
</footer>
<script src="script.js"></script>
</body>
</html>