-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducto.html
More file actions
57 lines (47 loc) · 2.14 KB
/
producto.html
File metadata and controls
57 lines (47 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FrontEnd Store</title>
<link rel="stylesheet" href="Css/normalize.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Staatliches&display=swap" rel="stylesheet">
<link rel="stylesheet" href="Css/estilos.css">
</head>
<body>
<header class="header">
<a href="index.html">
<img class="header__logo" src="Img/logo.png" alt="Logotipo">
</a>
</header>
<nav class="navegacion">
<a class="navegacion__enlace navegacion__enlace--activo" href="index.html">Tienda</a>
<a class="navegacion__enlace" href="nosotros.html">Nosotros</a>
</nav>
<main class="contenedor">
<h1>React JS</h1>
<div class="camisa">
<img class="camisa__imagen" src="Img/3.jpg" alt="Imagen del Producto">
<div class="camisa__contenido">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Libero quas earum distinctio aut temporibus,
fugit doloremque natus iusto velit vero deserunt voluptate, accusamus sint
fugiat dicta recusandae officiis nemo vitae!</p>
<form class="formulario">
<select class="formulario__campo">
<option disabled selected>-- Seleccionar Talla --</option>
<option>Pequeña</option>
<option>Mediana</option>
<option>Grande</option>
</select>
<input class="formulario__campo" type="number" placeholder="Cantidad" min="1">
<input class="formulario__submit" type="submit" value="Agregar al carrito">
</div>
</div>
</main>
<footer class="footer">
<p class="footer__texto">Front End Store - Todos los derechos Reservados 2024</p>
</footer>
</body>
</html>