Skip to content

Commit

Permalink
[ADD] Main html file (index.html)
Browse files Browse the repository at this point in the history
  • Loading branch information
pblvicente committed Oct 12, 2024
1 parent 0273af0 commit 4e37a44
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="es-ES" data-bs-theme="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Frutería</title>
<link href="./css/custom.css" rel="stylesheet" />
<script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="./js/custom.js"></script>
</head>

<body>
<div class="container-fluid">
<div class="container py-3">
<div class="row bg-dark-subtle rounded-top-3 border border-1">
<h1 class="text-center">Frutería</h1>
</div>
<div id="fruitContainer" class="row py-3 row-gap-3 bg-body-tertiary rounded-bottom-3 border border-1 border-top-0">
<!-- Generated with Javascript -->
</div>
</div>
<div class="container py-3">
<div class="row bg-dark-subtle rounded-top-3 border border-1">
<h1 class="text-center">Carrito</h1>
<!-- Generated with Javascript -->
</div>
<div class="row pt-3 pb-2 row-gap-3 bg-body-tertiary rounded-bottom-3 border border-1 border-top-0">
<h6 id="shoppingCartMessage" class="text-center">Vacío</h6>
<div class="btn-group">
<button id="shoppingCartButton" class="btn btn-success px-3" type="button">Mostrar</button>
</div>
</div>
</div>
</div>
</body>
</html>

0 comments on commit 4e37a44

Please sign in to comment.