|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | | - <title>ScriptJSON</title> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>ScriptJSON Downloads</title> |
7 | 7 | <style> |
8 | 8 | body { |
9 | 9 | font-family: Arial, sans-serif; |
10 | | - margin: 20px; |
11 | | - } |
12 | | - h1 { |
| 10 | + margin: 0; |
| 11 | + background-color: #f5f5f5; |
13 | 12 | color: #333; |
| 13 | + line-height: 1.6; |
| 14 | + } |
| 15 | + header { |
| 16 | + background-color: #007BFF; |
| 17 | + color: #fff; |
| 18 | + padding: 20px; |
| 19 | + text-align: center; |
| 20 | + } |
| 21 | + main { |
| 22 | + max-width: 900px; |
| 23 | + margin: 20px auto; |
| 24 | + padding: 0 20px; |
| 25 | + } |
| 26 | + section { |
| 27 | + margin-bottom: 40px; |
| 28 | + background: #fff; |
| 29 | + padding: 20px; |
| 30 | + border-radius: 8px; |
| 31 | + box-shadow: 0 2px 4px rgba(0,0,0,0.1); |
| 32 | + } |
| 33 | + h2 { |
| 34 | + margin-top: 0; |
| 35 | + border-bottom: 2px solid #007BFF; |
| 36 | + padding-bottom: 10px; |
| 37 | + } |
| 38 | + .buttons { |
| 39 | + display: flex; |
| 40 | + flex-wrap: wrap; |
| 41 | + gap: 10px; |
| 42 | + margin-top: 20px; |
14 | 43 | } |
15 | 44 | .button { |
16 | | - display: inline-block; |
| 45 | + flex: 1 1 200px; |
| 46 | + max-width: 250px; |
17 | 47 | padding: 10px 20px; |
18 | | - margin: 10px; |
19 | 48 | background-color: #007BFF; |
20 | | - color: white; |
| 49 | + color: #fff; |
| 50 | + text-align: center; |
21 | 51 | text-decoration: none; |
22 | 52 | border-radius: 5px; |
23 | 53 | transition: background-color 0.3s; |
24 | 54 | } |
25 | 55 | .button:hover { |
26 | 56 | background-color: #0056b3; |
27 | 57 | } |
| 58 | + footer { |
| 59 | + text-align: center; |
| 60 | + padding: 10px 20px; |
| 61 | + background-color: #007BFF; |
| 62 | + color: #fff; |
| 63 | + } |
28 | 64 | </style> |
29 | 65 | </head> |
30 | 66 | <body> |
31 | | - <h1>Download Library Files</h1> |
32 | | - <p>Click the buttons below to download the json files:</p> |
| 67 | + <header> |
| 68 | + <h1>ScriptJSON Downloads</h1> |
| 69 | + </header> |
| 70 | + <main> |
33 | 71 |
|
34 | | - <a href="4ndyPi.json" download="4ndyPi.json" class="button"> |
35 | | - Download 4ndyPi.json |
36 | | - </a> |
37 | | - <a href="4ndyPhi.json" download="4ndyPhi.json" class="button"> |
38 | | - Download 4ndyPhi.json |
39 | | - </a> |
40 | | - <a href="4ndyProfanities.json" download="4ndyProfanities.json" class="button"> |
41 | | - Download 4ndyProfanities.json |
42 | | - </a> |
43 | | - <a href="4ndyGreetingsAndFarewells.json" download="4ndyGreetingsAndFarewells.json" class="button"> |
44 | | - Download 4ndyGreetingsAndFarewells.json |
45 | | - </a> |
46 | | - <a href="4ndyEuler.json" download="4ndyEuler.json" class="button"> |
47 | | - Download 4ndyEuler.json |
48 | | - </a> |
49 | | - <a href="4ndyRandomCities.json" download="4ndyRandomCities.json" class="button"> |
50 | | - Download 4ndyRandomCities.json |
51 | | - </a> |
52 | | - <a href="4ndyRandomUsernames.json" download="4ndyRandomUsernames.json" class="button"> |
53 | | - Download 4ndyRandomUsernames.json |
54 | | - </a> |
| 72 | + <section id="json-files"> |
| 73 | + <h2>Download JSON Files</h2> |
| 74 | + <p>Click the buttons below to download the JSON files:</p> |
| 75 | + <div class="buttons"> |
| 76 | + <a href="4ndyPi.json" download="4ndyPi.json" class="button"> |
| 77 | + 4ndyPi.json |
| 78 | + </a> |
| 79 | + <a href="4ndyPhi.json" download="4ndyPhi.json" class="button"> |
| 80 | + 4ndyPhi.json |
| 81 | + </a> |
| 82 | + <a href="4ndyProfanities.json" download="4ndyProfanities.json" class="button"> |
| 83 | + 4ndyProfanities.json |
| 84 | + </a> |
| 85 | + <a href="4ndyGreetingsAndFarewells.json" download="4ndyGreetingsAndFarewells.json" class="button"> |
| 86 | + 4ndyGreetingsAndFarewells.json |
| 87 | + </a> |
| 88 | + <a href="4ndyEuler.json" download="4ndyEuler.json" class="button"> |
| 89 | + 4ndyEuler.json |
| 90 | + </a> |
| 91 | + <a href="4ndyRandomCities.json" download="4ndyRandomCities.json" class="button"> |
| 92 | + 4ndyRandomCities.json |
| 93 | + </a> |
| 94 | + <a href="4ndyRandomUsernames.json" download="4ndyRandomUsernames.json" class="button"> |
| 95 | + 4ndyRandomUsernames.json |
| 96 | + </a> |
| 97 | + </div> |
| 98 | + </section> |
| 99 | + |
| 100 | + <section id="js-files"> |
| 101 | + <h2>Download JavaScript Files</h2> |
| 102 | + <p>Click the buttons below to download the JavaScript files:</p> |
| 103 | + <div class="buttons"> |
| 104 | + <a href="4ndyMath.js" download="4ndyMath.js" class="button"> |
| 105 | + 4ndyMath.js |
| 106 | + </a> |
| 107 | + </div> |
| 108 | + </section> |
| 109 | + </main> |
| 110 | + <footer> |
| 111 | + © 2025 ScriptJSON |
| 112 | + </footer> |
55 | 113 | </body> |
56 | 114 | </html> |
0 commit comments