Skip to content

Commit 6616cdd

Browse files
authored
Create index.html
1 parent 23544e4 commit 6616cdd

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

index.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Download Library ScriptJSON</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 20px;
11+
}
12+
h1 {
13+
color: #333;
14+
}
15+
.button {
16+
display: inline-block;
17+
padding: 10px 20px;
18+
margin: 10px;
19+
background-color: #007BFF;
20+
color: white;
21+
text-decoration: none;
22+
border-radius: 5px;
23+
transition: background-color 0.3s;
24+
}
25+
.button:hover {
26+
background-color: #0056b3;
27+
}
28+
</style>
29+
</head>
30+
<body>
31+
<h1>Download Library Files</h1>
32+
<p>Click the buttons below to download the library json files:</p>
33+
34+
<a href="https://raw.githubusercontent.com/andy64lol/ScriptJSON.github.io/refs/heads/main/4ndyPi.json" download="4ndyPi.json" class="button">
35+
Download 4ndyPi.json
36+
</a>
37+
<a href="https://raw.githubusercontent.com/andy64lol/ScriptJSON.github.io/refs/heads/main/4ndyPhi.json" download="4ndyPhi.json" class="button">
38+
Download 4ndyPhi.json
39+
</a>
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)