加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
invoice.html 6.95 KB
一键复制 编辑 原始数据 按行查看 历史
aicong 提交于 2017-09-12 17:13 . init 前端代码
<!DOCTYPE html>
<html lang="en">
<head>
<title>Matrix Admin</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-responsive.min.css" />
<link rel="stylesheet" href="css/matrix-style2.css" />
<link rel="stylesheet" href="css/matrix-media.css" />
<link href="font-awesome/css/font-awesome.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="content">
<div id="content-header">
<h1>清单示例</h1>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div class="widget-box">
<div class="widget-title"> <span class="icon"> <i class="icon-briefcase"></i> </span>
<h5 >Company Name</h5>
</div>
<div class="widget-content">
<div class="row-fluid">
<div class="span6">
<table class="">
<tbody>
<tr>
<td><h4>Your Company Name</h4></td>
</tr>
<tr>
<td>Your Town</td>
</tr>
<tr>
<td>Your Region/State</td>
</tr>
<tr>
<td>Mobile Phone: +4530422244</td>
</tr>
<tr>
<td >me@company.com</td>
</tr>
</tbody>
</table>
</div>
<div class="span6">
<table class="table table-bordered table-invoice">
<tbody>
<tr>
<tr>
<td class="width30">Invoice ID:</td>
<td class="width70"><strong>TD-6546</strong></td>
</tr>
<tr>
<td>Issue Date:</td>
<td><strong>March 23, 2013</strong></td>
</tr>
<tr>
<td>Due Date:</td>
<td><strong>April 01, 2013</strong></td>
</tr>
<td class="width30">Client Address:</td>
<td class="width70"><strong>Cliente Company name.</strong> <br>
501 Mafia Street., washington, <br>
NYNC 3654 <br>
Contact No: 123 456-7890 <br>
Email: youremail@companyname.com </td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<table class="table table-bordered table-invoice-full">
<thead>
<tr>
<th class="head0">Type</th>
<th class="head1">Desc</th>
<th class="head0 right">Qty</th>
<th class="head1 right">Price</th>
<th class="head0 right">Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td>Firefox</td>
<td>Ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae</td>
<td class="right">2</td>
<td class="right">$150</td>
<td class="right"><strong>$300</strong></td>
</tr>
<tr>
<td>Chrome Plugin</td>
<td>Tro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt u eos et accusamus et iusto odio dignissimos ducimus deleniti atque</td>
<td class="right">1</td>
<td class="right">$1,200</td>
<td class="right"><strong>$1,2000</strong></td>
</tr>
<tr>
<td>Safari App</td>
<td>Rro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt u expedita distinctio</td>
<td class="right">2</td>
<td class="right">$850</td>
<td class="right"><strong>$1,700</strong></td>
</tr>
<tr>
<td>Opera App</td>
<td>Orro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut</td>
<td class="right">3</td>
<td class="right">$850</td>
<td class="right"><strong>$2,550</strong></td>
</tr>
<tr>
<td>Netscape Template</td>
<td>Vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque</td>
<td class="right">5</td>
<td class="right">$50</td>
<td class="right"><strong>$250</strong></td>
</tr>
</tbody>
</table>
<table class="table table-bordered table-invoice-full">
<tbody>
<tr>
<td class="msg-invoice" width="85%"><h4>Payment method: </h4>
<a href="#" class="tip-bottom" title="Wire Transfer">Wire transfer</a> | <a href="#" class="tip-bottom" title="Bank account">Bank account #</a> | <a href="#" class="tip-bottom" title="SWIFT code">SWIFT code </a>| <a href="#" class="tip-bottom" title="IBAN Billing address">IBAN Billing address </a></td>
<td class="right"><strong>Subtotal</strong> <br>
<strong>Tax (5%)</strong> <br>
<strong>Discount</strong></td>
<td class="right"><strong>$7,000 <br>
$600 <br>
$50</strong></td>
</tr>
</tbody>
</table>
<div class="pull-right">
<h4><span>Amount Due:</span> $7,650.00</h4>
<br>
<a class="btn btn-primary btn-large pull-right" href="#">Pay Invoice</a> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.ui.custom.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/matrix.js"></script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化