Files
pizzaexpress-webapp/index.html
2025-11-13 09:10:46 +01:00

25 lines
800 B
HTML

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PizzaExpress Web</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body onload="listPizze()">
<header>
<h1>PizzaExpress</h1>
</header>
<main>
<div class="pageControls">
<div>
<button onclick="window.open('add.html', 'popup', 'width=400,height=300')">+</button>
<button onclick="listPizze()">Aggiorna</button>
<br><br>
</div>
<div id="tabellaPizze"></div>
</div>
</main>
</body>
</html>