-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarifas.html
77 lines (72 loc) · 2.45 KB
/
tarifas.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
<!DOCTYPE html>
<html>
<head>
<title>Naturgy</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<style>
h1,h2,h3,table {
text-align: center;
font-family: Arial, Helvetica, sans-serif;}
p {text-align: center;
font-family: Arial, Helvetica, sans-serif;}
div {text-align: center;}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.table a
{
display:block;
text-decoration:none;
}
</style>
</head>
<body style="background-color:palegoldenrod";>
<img src="images/Naturgy.svg" alt="Logo de Naturgy" width="500" class="center">
<h1>Bienvenido a Naturgy</h1>
<h2>Tu compañia de luz y gas</h2>
<p><a href="index.html">Home</a> | <a href="tarifas.html">Tarifas</a> | <a href="servicios.html">Servicios</a> | <a href="contacto.html">Contacto</a></p>
<hr size="2px" color="black" />
<h2>Tarifa por uso</h2>
<img src="images/Poruso-luz.png" alt="Tarifa por uso" width="100" height="250" class="center">
<h3>Paga solo por lo que consumes.</h3>
<h4>Ventajas</h4>
<UL>
<LI>Tu consumo de luz a un precio estable</LI>
<LI>Paga por la luz que consumes</LI>
<LI>Sin permanencia</LI>
<LI>Energía 100% comprometida</LI>
</UL>
<table>
<thead>
<tr>
<th></th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr>
<td>Energía</td>
<td>0,207945 €/kWh</td>
</tr>
<tr>
<td>Potencia</td>
<td>0,106559 €/kWh</td>
</tr>
</tbody>
</table>
<hr size="2px" color="black" />
<h2>Tarifa Plana Zen</h2>
<img src="images/Zen.png" alt="Zen" height="250" class="center">
<h3>Inspira, espira… y paga lo mismo cada mes.</h3>
<h4>Ventajas</h4>
<UL>
<LI>Tu cuota fija y personalizada</LI>
<LI>Precio personalizado</LI>
<LI>Sin penalización por permanencia</LI>
<LI>Energía 100% comprometida</LI>
</UL>
</body>
</html>