-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 loc) · 1.35 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Risotto de setas</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="general__continer">
<header class="header__container">
<div class="header">
<span class="ingredients">ingredientes</span>
<h1 class="title"></h1>
<div class="selects">
<span class="select__all">Seleccionar todo</span>
<span> | </span>
<span class="unselect__all">Deseleccionar todo</span>
</div>
</div>
</header>
<main class="main__container">
<section class="list__container">
<ul class="ingredients__list">
</ul>
</section>
<section class="pay__container">
<div class="buy__container">
<p class="checked__items">Items: </p>
<div class="subtotal__container">
<p>Subtotal</p>
<p class="subtotal"></p>
</div>
<div class="shipping__container">
<p>Gastos de envío</p>
<p class="shipping__cost"></p>
</div>
<div class="total__container">
<p>Total</p>
<p class="total__price"></p>
</div>
</div>
<div class="button__container">
<button class="buy__button">Comprar ingredientes</button>
</div>
</section>
</main>
</div>
<script type="text/javascript" src=" js/main.js"></script>
</body>
</html>