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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>$titulo Nº $numero</title>
<style>
body {
font-family: sans-serif;
font-size: 15px;
color: #000;
}
footer {
border-top: 4px solid #000;
border-bottom: 1px solid #000;
font-size: 90%;
text-align: center;
padding: 5px;
}
h1 {
background: #999;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
color: #fff;
font-weight: normal;
font-size: 20px;
padding: 12px;
margin: 10px 0;
text-align: right;
}
header {
background: #000;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
color: #fff;
padding: 12px;
}
#datos_empresa pre {
background: #f4f4f4;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
padding: 12px 0;
}
#presupuesto h2 {
background: #eee;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
color: #000;
font-weight: bold;
font-size: 18px;
padding: 12px;
margin: 5px 0 0 0;
text-align: center;
}
</style>
</head>
<body>
<header>
<b>$nombre</b><br/>
<b>Web Site:</b> $web<br/>
<b>E-mail:</b> $email
</header>
<section id="datos_empresa">
<h1>$titulo Nº <b>$numero</b></h1>
<pre>
<b>Fecha:</b> $fecha<br/>
<b>Empresa:</b> $empresa<br/>
<b>Cliente:</b> $cliente</pre>
</section>
<section id="presupuesto">
<h2>SERVICIO OFRECIDO</h2>
<pre>
<b>Plan:</b> $plan
$servicio
<b>Precio:</b> $$ $precio
<b>IVA:</b> $$ $iva
<b>TOTAL: $$ $total</b>
</pre>
</section>
<footer>
(*) El presente presupuesto es válido hasta el <b>$limite</b> inclusive
</footer>
</body>
</html>
|