-
Notifications
You must be signed in to change notification settings - Fork 197
/
invoice-v1.html
145 lines (131 loc) · 4.81 KB
/
invoice-v1.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Miminium Admin Template v.1">
<meta name="author" content="Isna Nur Azis">
<meta name="keyword" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Miminium</title>
<!-- start: Css -->
<link rel="stylesheet" type="text/css" href="asset/css/bootstrap.min.css">
<!-- plugins -->
<link rel="stylesheet" type="text/css" href="asset/css/plugins/font-awesome.min.css"/>
<link rel="stylesheet" type="text/css" href="asset/css/plugins/simple-line-icons.css"/>
<link rel="stylesheet" type="text/css" href="asset/css/plugins/animate.min.css"/>
<link href="asset/css/style.css" rel="stylesheet">
<!-- end: Css -->
<link rel="shortcut icon" href="asset/img/logomi.png">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="mimin">
<div class="container invoice invoice-v1">
<nav class="navbar navbar-default header invoice-v1-tool container navbar-fixed-top">
<div class="col-md-12 nav-wrapper">
<div class="navbar-header" style="width:100%;">
<a href="index.html" class="navbar-brand">
<img src="asset/img/logomi.png" class="invoice-logo" alt="logo mi" />
<b>Invoice</b>
</a>
<ul class="nav navbar-nav navbar-right user-nav">
<li>
<button class="btn btn-round btn-primary" style="margin-top:10px;">Print</button>
</li>
</ul>
</div>
</div>
</nav>
<!-- start: Content -->
<div class="panel invoice-v1-content">
<div class="panel-body">
<div class="col-md-12 invoice-v1-header">
<div class="col-md-12">
<h1><b>INVOICE</b></h1>
</div>
<div class="col-md-12">
<h4>
<address>
<strong>Invoice #: 123</strong><br>
Created: July 28, 2014<br>
Due: July 28, 2015<br>
</address>
</h4>
</div>
</div>
<div class="col-md-12">
<div class="col-md-6">
<h4>
<address>
<strong>Miminium, Inc.</strong><br>
1234 Mimin Street, Suite 900<br>
Miminium City, CA 94103<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>
</h4>
</div>
<div class="col-md-6 text-right">
<h4>
<address>
<strong>AlfaMiminium Corp</strong><br>
Akihiko Avaron<br>
</address>
</h4>
</div>
</div>
<div class="col-md-12 padding-0">
<div class="responsive-table">
<table class="table table-striped">
<tr>
<th>Item</th>
<th>Qty</th>
<th>Price</th>
<th>Total</th>
</tr>
<tr>
<td>Jquery Plugin</td>
<td>---</td>
<td>---</td>
<td>---</td>
</tr>
<tr>
<td>Javascript Linter</td>
<td>---</td>
<td>---</td>
<td>---</td>
</tr>
<tr>
<td>Mobile Designer</td>
<td>---</td>
<td>---</td>
<td>---</td>
</tr>
<tr>
<th colspan="3">Total</th>
<td>----</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<!-- end: content -->
</div>
<!-- start: Javascript -->
<script src="asset/js/jquery.min.js"></script>
<script src="asset/js/jquery.ui.min.js"></script>
<script src="asset/js/bootstrap.min.js"></script>
<!-- plugins -->
<script src="asset/js/plugins/moment.min.js"></script>
<script src="asset/js/plugins/jquery.nicescroll.js"></script>
<!-- custom -->
<script src="asset/js/main.js"></script>
<script type="text/javascript">
</script>
<!-- end: Javascript -->
</body>
</html>