Get started with bootstrap-invoice CDN

MIT licensed

Bootstrap Invoice is a free and customizable invoice template built with Bootstrap.

Tags:
  • bootstrap
  • template
  • bootstrap5
  • responsive
  • invoice
  • responsive-design
  • invoice-template
  • bootstrap5-template

Stable version

Copied!

How to start using bootstrap-invoice CDN


<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css">
    <link rel="stylesheet" href="https://cdn.cdnhub.io/bootstrap-invoice/1.0.0/bootstrap-invoice.min.css">
    <title>Get started with bootstrap-invoice CDN - cdnhub.io</title>
</head>
<body>
    <div class="container mt-5">
        <div class="row">
            <div class="col-md-6 offset-md-3">
                <div class="card p-3">
                    <div class="card-header text-center">
                        <h5>Invoice</h5>
                    </div>
                    <div class="card-body">
                        <div class="invoice-print">
                            <div class="row">
                                <div class="col-md-6 invoice-from">
                                    <address>
                                        <strong>Company Name</strong><br>
                                        1234 Street Name<br>
                                        City, State ZIP<br>
                                        Phone: (123) 456-7890<br>
                                        Email: company@example.com
                                    </address>
                                </div>
                                <div class="col-md-6 invoice-to text-right">
                                    <address>
                                        <strong>Customer Name</strong><br>
                                        5678 Customer Street<br>
                                        City, State ZIP<br>
                                        Phone: (987) 654-3210<br>
                                        Email: customer@example.com
                                    </address>
                                </div>
                            </div>
                            <hr class="invoice-line">
                            <div class="row">
                                <div class="col-md-12 table-responsive">
                                    <table class="table table-striped">
                                        <thead>
                                            <tr>
                                                <th>Description</th>
                                                <th>Quantity</th>
                                                <th>Price</th>
                                            </tr>
                                        </thead>
                                        <tbody>
                                            <tr>
                                                <td>Product 1</td>
                                                <td>2</td>
                                                <td>$50.00</td>
                                            </tr>
                                            <tr>
                                                <td>Product 2</td>
                                                <td>1</td>
                                                <td>$100.00</td>
                                            </tr>
                                        </tbody>
                                    </table>
                                </div>
                            </div>
                            <hr class="invoice-line">
                            <div class="row">
                                <div class="col-md-6">
                                    <p class="lead">Subtotal:</p>
                                    <p class="lead font-weight-bold">$150.00</p>
                                </div>
                                <div class="col-md-6 text-right">
                                    <p class="lead">Tax:</p>
                                    <p class="lead font-weight-bold">$25.00</p>
                                </div>
                            </div>
                            <hr class="invoice-line">
                            <div class="row">
                                <div class="col-md-6">
                                    <p class="lead">Total:</p>
                                    <p class="lead font-weight-bold">$175.00</p>
                                </div>
                                <div class="col-md-6 text-right">
                                    <button class="btn btn-primary btn-block">Pay Now</button>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
    <script src="https://cdn.cdnhub.io/bootstrap-invoice/1.0.0/bootstrap-invoice.min.js"></script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!

All versions