-
Notifications
You must be signed in to change notification settings - Fork 0
/
detalleproducto.html
68 lines (61 loc) · 2.05 KB
/
detalleproducto.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.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
</head>
<body>
<header>
<input type="checkbox" id="btn-menu">
<label for="btn-menu" class="label-check"><span class="material-icons material-icons-outlined">reorder</span></label>
<a href="#"class="logo"><span class="material-icons material-icons-outlined">
shopping_cart
</span></a>
<nav class="menu">
<ul>
<li>
<a href="index.html">Inicio</a>
</li>
<li>
<a href="listaproductos.html">Lista de Productos</a>
</li>
<li>
<a href="users.html">Usuarios</a>
</li>
<li>
<a href="contacto.html">Contacto</a>
</li>
</ul>
</nav>
</header>
<section class="detalle">
<div>
<img src="img/pc1.jpg" alt="">
</div>
<div class="caracteristicas">
<p>
Notebook Asus Zenbook 14 UX425EA-BM004T
Intel Core i5 1135G7 8Gb SSD 512Gb 14"
Win10
</p>
</div>
<div class="descripcion">
<h2>Descripcion</h2>
<p>
El nuevo ZenBook 14 es más portátil que nunca.
Es más fino, ligero y compacto, sin embargo; los puertos HDMI
, Thunderbolt™ 4 USB-C®, USB de tipo A y el lector de tarjetas micro-SD le dan una versatilidad inigualable.
</p>
</div>
<div class="boton">
<button>Comprar</button>
</div>
</section>
<footer>Bienvenidos al ejemplo de Pablo Roque ©</footer>
</body>
</html>