-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 1.96 KB
/
index.html
File metadata and controls
65 lines (65 loc) · 1.96 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
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pizza Front</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/solid.min.css">
<!-- <link rel="stylesheet" href="css/style.css" /> -->
<link rel="stylesheet" href="css/style_base.css">
</head>
<body>
<header>
<div class="header__logo">
<img src="img/VectorPizza.svg" alt="Logo Header" />
<h1><span>Pizza</span>&<span>Front</span></h1>
</div>
<nav>
<ul type="none">
<li>Home</li>
<li>Ranking</li>
<li>Promoción</li>
<li>Contacto</li>
</ul>
</nav>
</header>
<main>
<section class="container">
<div class="card delivery">
<h3>Envio gratis <span>comprando</span> 2 pizzas</h3>
</div>
<div class="card podio">
<h3>Podio de pizzas</h3>
<div class="top5">
<div class="podio__pizzas">
<h4>Pizzas top 5</h4>
<ol>
<li>Muzarella</li>
<li>Hawaiana</li>
<li>Muzarella J&Morron</li>
<li>Fugazzetta</li>
<li>Calabresa</li>
</ol>
</div>
<div class="podio__img">
<img src="img/PizzaFalling.jpg" alt="Pizza Falling" />
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer__logo">
<img src="img/VectorPizza.svg" alt="Logo Header" />
<h1><span>Pizza</span>&<span>Front</span></h1>
</div>
<ul type="none">
<li>Home</li>
<li>Ranking</li>
<li>Promoción</li>
<li>Contacto</li>
</ul>
</footer>
</body>
</html>