HTML code
This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 4.1.1 included, to get the result that you can see in the preview selection
Download<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container">
<div class="col-md-12">
<div class="invoice">
<!-- begin invoice-company -->
<div class="invoice-company text-inverse f-w-600">
<span class="pull-right hidden-print">
<a href="javascript:;" class="btn btn-sm btn-white m-b-10 p-l-5"><i class="fa fa-file t-plus-1 text-danger fa-fw fa-lg"></i> Export as PDF</a>
<a href="javascript:;" onclick="window.print()" class="btn btn-sm btn-white m-b-10 p-l-5"><i class="fa fa-print t-plus-1 fa-fw fa-lg"></i> Print</a>
</span>
Company Name, Inc
</div>
<!-- end invoice-company -->
<!-- begin invoice-header -->
<div class="invoice-header">
<div class="invoice-from">
<small>from</small>
<address class="m-t-5 m-b-5">
<strong class="text-inverse">Twitter, Inc.</strong><br>
Street Address<br>
City, Zip Code<br>
Phone: (123) 456-7890<br>
Fax: (123) 456-7890
</address>
</div>
<div class="invoice-to">
<small>to</small>
<address class="m-t-5 m-b-5">
<strong class="text-inverse">Company Name</strong><br>
Street Address<br>
City, Zip Code<br>
Phone: (123) 456-7890<br>
Fax: (123) 456-7890
</address>
</div>
<div class="invoice-date">
<small>Invoice / July period</small>
<div class="date text-inverse m-t-5">August 3,2012</div>
<div class="invoice-detail">
#0000123DSS<br>
Services Product
</div>
</div>
</div>
<!-- end invoice-header -->
<!-- begin invoice-content -->
<div class="invoice-content">
<!-- begin table-responsive -->
<div class="table-responsive">
<table class="table table-invoice">
<thead>
<tr>
<th>TASK DESCRIPTION</th>
<th class="text-center" width="10%">RATE</th>
<th class="text-center" width="10%">HOURS</th>
<th class="text-right" width="20%">LINE TOTAL</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="text-inverse">Website design & development</span><br>
<small>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed id sagittis arcu.</small>
</td>
<td class="text-center">$50.00</td>
<td class="text-center">50</td>
<td class="text-right">$2,500.00</td>
</tr>
<tr>
<td>
<span class="text-inverse">Branding</span><br>
<small>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed id sagittis arcu.</small>
</td>
<td class="text-center">$50.00</td>
<td class="text-center">40</td>
<td class="text-right">$2,000.00</td>
</tr>
<tr>
<td>
<span class="text-inverse">Redesign Service</span><br>
<small>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed id sagittis arcu.</small>
</td>
<td class="text-center">$50.00</td>
<td class="text-center">50</td>
<td class="text-right">$2,500.00</td>
</tr>
</tbody>
</table>
</div>
<!-- end table-responsive -->
<!-- begin invoice-price -->
<div class="invoice-price">
<div class="invoice-price-left">
<div class="invoice-price-row">
<div class="sub-price">
<small>SUBTOTAL</small>
<span class="text-inverse">$4,500.00</span>
</div>
<div class="sub-price">
<i class="fa fa-plus text-muted"></i>
</div>
<div class="sub-price">
<small>PAYPAL FEE (5.4%)</small>
<span class="text-inverse">$108.00</span>
</div>
</div>
</div>
<div class="invoice-price-right">
<small>TOTAL</small> <span class="f-w-600">$4508.00</span>
</div>
</div>
<!-- end invoice-price -->
</div>
<!-- end invoice-content -->
<!-- begin invoice-note -->
<div class="invoice-note">
* Make all cheques payable to [Your Company Name]<br>
* Payment is due within 30 days<br>
* If you have any questions concerning this invoice, contact [Name, Phone Number, Email]
</div>
<!-- end invoice-note -->
<!-- begin invoice-footer -->
<div class="invoice-footer">
<p class="text-center m-b-5 f-w-600">
THANK YOU FOR YOUR BUSINESS
</p>
<p class="text-center">
<span class="m-r-10"><i class="fa fa-fw fa-lg fa-globe"></i> matiasgallipoli.com</span>
<span class="m-r-10"><i class="fa fa-fw fa-lg fa-phone-volume"></i> T:016-18192302</span>
<span class="m-r-10"><i class="fa fa-fw fa-lg fa-envelope"></i> [email protected]</span>
</p>
</div>
<!-- end invoice-footer -->
</div>
</div>
</div>
CSS code
This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 4.1.1 included, to get the result that you can see in the preview selection
Downloadbody{
margin-top:20px;
background:#eee;
}
.invoice {
background: #fff;
padding: 20px
}
.invoice-company {
font-size: 20px
}
.invoice-header {
margin: 0 -20px;
background: #f0f3f4;
padding: 20px
}
.invoice-date,
.invoice-from,
.invoice-to {
display: table-cell;
width: 1%
}
.invoice-from,
.invoice-to {
padding-right: 20px
}
.invoice-date .date,
.invoice-from strong,
.invoice-to strong {
font-size: 16px;
font-weight: 600
}
.invoice-date {
text-align: right;
padding-left: 20px
}
.invoice-price {
background: #f0f3f4;
display: table;
width: 100%
}
.invoice-price .invoice-price-left,
.invoice-price .invoice-price-right {
display: table-cell;
padding: 20px;
font-size: 20px;
font-weight: 600;
width: 75%;
position: relative;
vertical-align: middle
}
.invoice-price .invoice-price-left .sub-price {
display: table-cell;
vertical-align: middle;
padding: 0 20px
}
.invoice-price small {
font-size: 12px;
font-weight: 400;
display: block
}
.invoice-price .invoice-price-row {
display: table;
float: left
}
.invoice-price .invoice-price-right {
width: 25%;
background: #2d353c;
color: #fff;
font-size: 28px;
text-align: right;
vertical-align: bottom;
font-weight: 300
}
.invoice-price .invoice-price-right small {
display: block;
opacity: .6;
position: absolute;
top: 10px;
left: 10px;
font-size: 12px
}
.invoice-footer {
border-top: 1px solid #ddd;
padding-top: 10px;
font-size: 10px
}
.invoice-note {
color: #999;
margin-top: 80px;
font-size: 85%
}
.invoice>div:not(.invoice-footer) {
margin-bottom: 20px
}
.btn.btn-white, .btn.btn-white.disabled, .btn.btn-white.disabled:focus, .btn.btn-white.disabled:hover, .btn.btn-white[disabled], .btn.btn-white[disabled]:focus, .btn.btn-white[disabled]:hover {
color: #2d353c;
background: #fff;
border-color: #d9dfe3;
}
About this bootstrap example/template
This example/template, bs4 invoice, was published on Jun 17th 2018, 21:18 by Bootdey Admin and it is free.
We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.
We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.
This code example currectly have 60.6K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 4.1.1
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>
This code example is based on bootstrap 4.1.1 and the grid system of this framework
Responsive
Based on bootstrap framework makes all the layouts perfectly responsive for all devices
Crossbrowser compatibility
Tested on all major browsers, it works smoothly on all of them
semantic html 5
Built on html / css3 the code quality is really amazing
Simple Integration
This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working