-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.94 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.94 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rodmac Emprendimientos</title>
<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=Arima+Madurai:wght@700&family=Mulish:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<h1>RODMAC</h1>
<a href="cart.html" class="principal">
<img src="./img/cart.png" />Carrito</a>
</header>
<div class="bg-hero">
<h1>Las mejores plantas</h1>
</div>
<main>
<section class="containerProduct">
<h1 class="">
<span>NUESTROS</span>
Productos
</h1>
<div id="productos">
</div>
</section>
</main>
<footer>
<h1>RODMAC <span>emprendimientos</span></h1>
</footer>
<template id="template-card">
<div class="card">
<img src="" alt="" class="img-card">
<div class="product-card">
<h5>Titulo</h5>
<p>precio</p>
<button class="btn btn-2 hover-opacity">
<span>Agregar al carrito</span>
</button>
</div>
</div>
</template>
<script src="./js/script.js"></script>
</body>
</html>