-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
68 lines (59 loc) · 3 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>HTML Invoice Templates based on Bootstrap 3</title>
<!-- Bootstrap cdn 3.3.7 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/style.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container ">
<div class="row">
<div class="col-xs-12">
<h1 class="text-center">
A Clean, Responsive HTML Invoice Templates Based on Bootstrap 3.
<a href="https://github.com/nirajrajgor/html-invoice-templates" class="github-btn" target="_blank">Github</a>
</h1>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-6">
<div class="invoice-item-wrapper">
<h2>Invoice Sample 1</h2>
<img src="./assets/invoice-1-2x.jpg" class="img-responsive" alt="Invoice sample 1 preview image">
<a href="./invoice1/invoice1.html" target="_blank">View Demo</a>
<a href="./assets/invoice1.zip" download="invoice1" target="_blank">Download Files</a>
</div>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-6">
<div class="invoice-item-wrapper">
<h2>Invoice Sample 2</h2>
<img src="./assets/invoice-2-2x.jpg" class="img-responsive" alt="Invoice sample 2 preview image">
<a href="./invoice2/invoice2.html" target="_blank">View Demo</a>
<a href="./assets/invoice2.zip" download="invoice2" target="_blank">Download Files</a>
</div>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-6">
<div class="invoice-item-wrapper">
<h2>Invoice Sample 3</h2>
<img src="./assets/invoice-3-2x.jpg" class="img-responsive" alt="Invoice sample 3 preview image">
<a href="./invoice3/invoice3.html" target="_blank">View Demo</a>
<a href="./assets/invoice3.zip" download="invoice3g" target="_blank">Download Files</a>
</div>
</div>
</div>
</div>
<!-- jquery slim version 3.2.1 minified -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g=" crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>