-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
57 lines (53 loc) · 1.99 KB
/
shop.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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="logo.ico" type="image/x-icon">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1CV0W5QPKV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-1CV0W5QPKV');
</script>
<body>
<header>
<h1>Shop</h1>
</header>
<!-- Navigazione -->
<nav>
<div class="nav-container">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="tipi-di-pizza.html">Tipi di Pizza</a></li>
<li><a href="prefermenti_e_farine.html">Prefermenti e Farine</a></li>
<li><a href="calcolatore.html">Calcolatore</a></li>
<li><a href="assistente.html">Assistente</a></li>
<li><a href="contatti.html">Contatti</a></li>
<li><a href="https://pizzalab.bettermode.io/" target="_blank" rel="noopener noreferrer">PizzaLab Community</a></li>
<li><a href="simulator.html">Nutrienti e calorie</a></li>
<li><a href="shop.html">Shop</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<section class="cards-container">
<div id="product-list"></div>
</section>
<footer>
<p>© 2024 PizzaLab - La tua guida alla pizza perfetta</p>
</footer>
<script src="js/cookies.js" defer></script>
<script src="js/shop.js"></script>
<script src="js/main.js" defer></script> <!-- Nuovo script per il menu hamburger -->
</body>
</html>