-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalogo.html
More file actions
91 lines (69 loc) · 3.72 KB
/
catalogo.html
File metadata and controls
91 lines (69 loc) · 3.72 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
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
<!doctype html>
<html lang="ES">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Catalogo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Madera y Marmoles">
<meta name="keywords" content="MADERA,MARMOL,ASHEN,CHERRY,EWALNUT,BALMORAL,BENEDETI">
<meta name=" author " content="Alvaro Mesa ">
<meta name="viewport " content="width=device-width, initial-scale=1.0 ">
<link rel="stylesheet " type="text/css " href="estilomm.css ">
<script src="javascript.js"></script>
</head>
<body>
<!-- 4 divs:titulo, botonera, descripción y fondo-->
<!--titulo-->
<div>
<div class="titulo">
<img src="Images/logo.jpg" alt="Maderas & Mármoles">
</div>
<div class="botones">
<nav>
<ul>
<li>
<a href="index.html"><img class="boton" id="principal" src="Images/principal1.jpg" onmouseover="hoverImage('principal', 'Images/principal2.jpg')" onmouseout="hoverImage('principal','Images/principal1.jpg')"></a>
</li>
<li>
<a href="catalogo.html"><img class="boton" id="catalogo" src="Images/catalogo1.jpg" onmouseover="hoverImage('catalogo', 'Images/catalogo2.jpg')" onmouseout="hoverImage('catalogo','Images/catalogo1.jpg')"></a>
</li>
<li>
<a href="consejos.html"><img class="boton" id="consejos" src="Images/descripcion1.jpg" onmouseover="hoverImage('consejos', 'Images/descripcion2.jpg')" onmouseout="hoverImage('consejos','Images/descripcion1.jpg')"></a>
</li>
<li>
<a href="otros.html"><img class="boton" id="otros" src="Images/otros1.jpg" onmouseover="hoverImage('otros', 'Images/otros2.jpg')" onmouseout="hoverImage('otros','Images/otros1.jpg')"></a>
</li>
</ul>
</nav>
</div>
<div class="panel">
</div>
<div class="contenido ">
<table>
<!--5 tablerows-->
<tr>
<th><a href=consejos.html#Ashen>ASHEN</a></th>
<th><img src="muestras/ashen.jpg" alt="click para expandir" title="click para ver Detalles" onclick="OpenWin('./textos/Tables/ashen.html')" /> </th>
</tr>
<tr>
<th><a href=consejos.html#Cherry>CHERRY</a></th>
<th><img src="muestras/cherry.jpg" alt="click para expandir" title="click para ver Detalles" onclick="OpenWin('./textos/Tables/cherry.html')" /> </th>
</tr>
<tr>
<th><a href=consejos.html#Ewalnut>EWALNUT</a></th>
<th><img src="muestras/ewalnut.jpg" alt="click para expandir" title="click para ver Detalles" onclick="OpenWin('./textos/Tables/ewalnut.html')" /> </th>
</tr>
<tr>
<th><a href=consejos.html#Balmoral>BALMORAL</a></th>
<th><img src="muestras/balmoral.jpg" alt="click para expandir" title="click para ver Detalles" onclick="OpenWin('./textos/Tables/balmoral.html')" /> </th>
</tr>
<tr>
<th><a href=consejos.html#Benedeti>BENEDETI</a></th>
<th><img src="muestras/benedetti.jpg" alt="click para expandir" title="click para ver Detalles" onclick="OpenWin('./textos/Tables/benedeti.html')" /> </th>
</tr>
</table>
</div>
</div>
</body>
</html>