-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamisagraphql.html
69 lines (66 loc) · 2.16 KB
/
camisagraphql.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/normalize.css" />
<link rel="preload" href="./css/normalize.css" as="style" />
<link rel="stylesheet" href="./css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Staatliches&display=swap"
rel="stylesheet"
/>
<title>FrontEnd Store</title>
</head>
<body>
<header class="header">
<a href="index.html">
<img class="header__logo" src="/img/logo.png" alt="Logo" />
</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>GraphQL</h1>
<div class="camisa">
<img src="/img/13.jpg" alt="camisa GraphQL" />
<div class="camisa__contenido">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente
voluptatem quas vitae repudiandae, eaque asperiores. Odit ipsum,
quos placeat minima dolores possimus, provident quisquam alias
perspiciatis, in aliquid ipsa eos.
</p>
<form class="formulario">
<select class="formulario__campo" id="">
<option disabled selected value="">--Seleccionar Talla--</option>
<option value="">Chica</option>
<option value="">Mediana</option>
<option value="">Grande</option>
</select>
<input
class="formulario__campo"
type="number"
min="1"
placeholder="Cantidad"
/>
<input
class="formulario__submit"
type="submit"
value="Agregar al Carrito"
/>
</form>
</div>
</div>
</main>
<footer class="footer">
<p class="footer__texto">
Front End Store - Todos los derechos Reservados 2023.
</p>
</footer>
</body>
</html>