-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (57 loc) · 2.83 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
64
65
66
67
<!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="Resources Calculator for BBN Hosting">
<meta name="keywords" content="bbn, resource, minecraft, host, service, free, 24/7, calculator">
<meta name="author" content="G9 Aerospace">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="BBN Resource Calculator">
<meta property="og:description" content="Resources Calculator for BBN Hosting">
<meta property="og:image" content="https://i.imgur.com/XGGdkH3.png">
<meta property="og:url" content="https://bbn.g9aerospace.in/">
<link rel="icon" type="image/png" href="assets/bbn.png">
<title>BBN Resource Calculator</title>
<h4>DISCLAIMER: The author is not liable for any incorrect information provided on this site; this site is just for estimation. For actual prices, contact the BBN staff for latest info</h4>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="title-container">BBN - Resource Calculator</h1>
<a href="https://bbn.one/hosting" target="_blank" class="header-link">Website</a>
<a href="https://discord.gg/bbn-hosting-757966278936756345" target="_blank" class="header-link">Discord</a>
</header>
<div class="calculator">
<div class="input-group">
<label for="servers">Servers</label>
<input type="range" id="servers" min="0" max="10" value="0" step="1" oninput="calculateCoins()">
<span id="serversValue">0</span>
</div>
<div class="input-group">
<label for="memory">Memory (100 MB)</label>
<input type="range" id="memory" min="0" max="10000" value="0" step="100" oninput="calculateCoins()">
<span id="memoryValue">0</span>
</div>
<div class="input-group">
<label for="storage">Storage (100 MB)</label>
<input type="range" id="storage" min="0" max="20000" value="0" step="100" oninput="calculateCoins()">
<span id="storageValue">0</span>
</div>
<div class="input-group">
<label for="cpu">CPU (%)</label>
<input type="range" id="cpu" min="0" max="1000" value="0" step="50" oninput="calculateCoins()">
<span id="cpuValue">0</span>
</div>
</div>
<div class="result">
<h2>Coins Needed: <span id="totalCoins">0</span></h2>
<h2>Cost: <span id="cost">$0.00</span></h2>
</div>
<footer>
<p>Author's site: <a href="https://g9aerospace.in" target="_blank">g9aerospace.in</a></p>
<button onclick="window.open('https://github.com/g9militantsYT/BBN-Resource-Calculator', '_blank')">GitHub Repository</button>
</footer>
<script src="script.js"></script>
</body>
</html>