-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabels-printer.html
More file actions
60 lines (52 loc) · 2.58 KB
/
Copy pathlabels-printer.html
File metadata and controls
60 lines (52 loc) · 2.58 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML & CSS Avery Labels (5160)</title>
<style type="text/css">
body {
width: 8.5in;
margin: 0in .1875in;
}
.label {
/* Avery 5160 labels -- CSS and HTML by MM at Boulder Information Services */
width: 2.025in; /* plus .6 inches from padding */
height: .875in; /* plus .125 inches from padding */
padding: .125in .3in 0;
margin-right: .125in; /* the gutter */
float: left;
text-align: center;
overflow: hidden;
/*outline: 1px dotted; outline doesn't occupy space like border does */
}
.label table {
width: 100%;
height: 100%;
border: none;
padding: 0px;
}
.label img {
height: .350in;
vertical-align: middle;
}
.label .price {
font-size: 22pt;
font-weight: bold;
}
.label .code {
font-size: 10pt;
}
.page-break {
clear: left;
display: block;
page-break-after: always;
}
</style>
</head>
<body>
<div class="label"><table><tr><td colspan="2"><img src="file://C:\Users\Dominic\Pictures\pealogo.png" /></td></tr><tr><td><span class="code">1006</span></td><td><span class="price">34,95 $</span></td></tr></table></div><div class="label"><table><tr><td colspan="2"><img src="file://C:\Users\Dominic\Pictures\pealogo.png" /></td></tr><tr><td><span class="code">1006</span></td><td><span class="price">34,95 $</span></td></tr></table></div><div class="label"><table><tr><td colspan="2"><img src="file://C:\Users\Dominic\Pictures\pealogo.png" /></td></tr><tr><td><span class="code">1008</span></td><td><span class="price">50,00 $</span></td></tr></table></div><div class="label"><table><tr><td colspan="2"><img src="file://C:\Users\Dominic\Pictures\pealogo.png" /></td></tr><tr><td><span class="code">1008</span></td><td><span class="price">50,00 $</span></td></tr></table></div><div class="label"><table><tr><td colspan="2"><img src="file://C:\Users\Dominic\Pictures\pealogo.png" /></td></tr><tr><td><span class="code">def</span></td><td><span class="price">45,00 $</span></td></tr></table></div>
<script type="text/javascript">
setTimeout(function () { window.print(); }, 1234);
</script>
</body>
</html>