"purchase order"
Bootstrap 4.1.1 Snippet by kai1313

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div>
<div class="purchase overflow-auto">
<!--<div style="min-width: 600px">-->
<header>
<div class="row">
<div class="col-sm-3 col-xs-3">
<img src="https://www.qbrobotics.com/wp-content/uploads/2018/03/sample-logo-490x200.png" class="img-responsive">
</div>
<div class="col-sm-9 col-xs-9 company-details">
<div>company address, city, postal</div>
<div>company phone +0987654</div>
<div>company fax +098765</div>
</div>
</div>
</header>
<main>
<div class="row">
<div class="col-sm-3 col-xs-3 to-details">
<div>PURCHASED ORDER FOR :</div>
<div class="to-name">Company A</div>
<div class="to-address">Company A Address</div>
<div class="to-city">City, Postal</div>
</div>
<div class="col-sm-9 col-xs-9 purchase-info">
<h4 class="info-code">PO/1212/121212</h4>
<div class="info-date">Issued : 23-Dec-2018</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-xs-12 table-responsive">
<table class="table table-condensed" border="0" cellspacing="0" cellpadding="0" width="100%">
<thead>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.purchase
{
position: relative;
background-color: #FFF;
min-height: 680px;
padding: 15px;
font-family: Times New Roman;
}
.purchase header
{
padding: 0px 0px 0px 0px;
margin-bottom: 0px;
border-bottom: 1px solid #3989c6;
}
.purchase header img
{
max-width: 200px;
margin-top: 0;
margin-bottom: 0;
}
.purchase .company-details
{
text-align: right;
margin-top: 0;
margin-bottom: 0;
}
.purchase main
{
padding: 0px 0px;
margin-bottom: 0px;
}
.purchase .to-details
{
text-align: left;
}
.purchase .to-name
{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: