-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (107 loc) · 4.12 KB
/
Copy pathindex.html
File metadata and controls
109 lines (107 loc) · 4.12 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Collection of Minecraft Bedrock Edition tools including Function Generator and Loot Table Generator" />
<meta name="keywords" content="Minecraft, Bedrock, Function Generator, Loot Table Generator, Tools" />
<meta name="author" content="vertX" />
<title>Minecraft Bedrock Tools - vertX</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f0f0f0;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #2c3e50;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.tool-card {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
text-align: center;
transition: transform 0.2s;
}
.tool-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.tool-card h2 {
margin-top: 0;
color: #3498db;
}
.tool-card p {
color: #666;
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #3498db;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.2s;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="container">
<h1>Minecraft Bedrock Tools</h1>
<div class="tools-grid">
<div class="tool-card">
<h2>Function Generator</h2>
<p>Create powerful Minecraft functions by drawing precise hitboxes and assigning commands with color-coded organization.</p>
<a href="function-generator.html" class="button">Open Function Generator</a>
</div>
<div class="tool-card">
<h2>Loot Table Generator</h2>
<p>Generate custom loot tables for your Minecraft Bedrock Edition maps and add-ons with an easy-to-use interface.</p>
<a href="loot-table-generator.html" class="button">Open Loot Table Generator</a>
</div>
<div class="tool-card">
<h2>Calculator</h2>
<p>Calculator for math statistic</p>
<a href="math-calculator/calculator.html" class="button">Open Calculator</a>
</div>
<div class="tool-card">
<h2>Torches</h2>
<p>Torches game</p>
<a href="torches/index.html" class="button">Open Torches Game</a>
</div>
<div class="tool-card">
<h2>Linear</h2>
<p>equations solver</p>
<a href="linear_equation_solver.html" class="button">Open Solver</a>
</div>
<div class="tool-card">
<h2>Linear</h2>
<p>Model Weight Calculator</p>
<a href="model_weights_calculating.html" class="button">Weights</a>
</div>
</div>
</div>
</body>
</html>