<!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="Paper Thickness Calculator - Calculate the caliper of paper stacks based on stack thickness, number of sheets, and sheet thickness.">
    <title>Paper Thickness Calculator</title>
    <link rel="stylesheet" href="/css/style.css">
</head>
<body>
    <header>
        <nav>
            <ul>
                <li><a href="/">Home</a></li>
                <li><a href="/contact.html">Contact</a></li>
                <li><a href="/security.html">Security Policy</a></li>
                <li><a href="/team.html">Team</a></li>
<li><a href="https://turbologo.com/logo-maker">Online Logo Maker</a></li>
            </ul>
        </nav>
        <h1>Paper Thickness Calculator</h1>
    </header>

    <main>
        <section>
            <h2>Calculate Paper Thickness</h2>
            <form id="calculator-form">
                <label for="stackThickness">Stack Thickness (mm):</label>
                <input type="number" id="stackThickness" required>

                <label for="sheetsInStack">Number of Sheets in the Stack:</label>
                <input type="number" id="sheetsInStack" required>

                <label for="paperThickness">Paper Thickness (mm):</label>
                <input type="number" id="paperThickness" required>

                <button type="submit">Calculate Caliper</button>
            </form>

            <p id="result"></p>
        </section>

        <section>
            <h2>About This Calculator</h2>
            <p>This calculator helps you measure the caliper (thickness) of paper stacks based on the number of sheets, their thickness, and the total stack height.</p>
        </section>
    </main>

    <footer>
        <ul>
            <li><a href="/">English</a></li>
            <li><a href="/es">Espanol</a></li>
            <li><a href="/pt">Portugues</a></li>
            <li><a href="/fr">Francais</a></li>
        </ul>
    </footer>

    <script src="/js/calculator.js"></script>
</body>
</html>
