forked from Vivaan-d/PreciseTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBase Capacity Calculator.html
More file actions
39 lines (37 loc) · 2.13 KB
/
Base Capacity Calculator.html
File metadata and controls
39 lines (37 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Precise Tools: BCC</title>
<link rel="stylesheet" href="yes.css">
<link rel="icon" type="image/x-icon" href="precisetools.png">
<!-- Facebook Meta Tags -->
<meta property="og:title" content="Precise Tools: Base Capacity Calculator">
<meta property="og:type" content="website">
<meta property="og:description" content="Base Capacity Calculator: Calculate your capacity before multipliers">
<meta property="og:image" content="https://precisetools-pack.netlify.app/Banners/BCC%20Poster.png"> <!-- Replace with your actual image URL -->
<!-- Twitter Meta Tags (similar to Open Graph) -->
<meta name="twitter:title" content="Precise Tools">
<meta name="twitter:description" content="Base Capacity Calculator: Calculate your capacity before multipliers">
<meta name="twitter:image" content="https://precisetools-pack.netlify.app/Banners/BCC%20Poster.png"> <!-- Replace with your actual image URL -->
<meta name="twitter:card" content="summary_large_image">
<!-- Other necessary meta tags -->
<meta name="description" content="Precise Tools: Base Capacity Calculator; Calculate your capacity before multipliers">
</head>
<body>
<div class="container">
<header>amogu
</header>
<main>
<h3>Insert your capacity here (Exact)</h3>
<input id="capacity">
<h3>Insert your capacity multiplier here</h3>
<input id="capacitymult">
<button onclick="document.getElementById('answer').innerHTML = (document.getElementById('capacity').value*100) / document.getElementById('capacitymult').value; /* capacity mult */document.getElementById('capacitymultx').innerHTML = document.getElementById('capacitymult').value/100 + 'x' ">Calculate</button>
<p>Your base capacity is: <span id="answer">[Enter the fields above]</span></p>
<p>This is the capacity before multipliers, and also the multipliers are <span id="capacitymultx">[Enter the fields above]</span></p>
</div>
<script src="homepagehandler.js"></script>
</body>
</html>