Prime modifiche

This commit is contained in:
2025-10-02 12:08:20 +02:00
parent 749adc1590
commit 861769cd69
3 changed files with 76 additions and 0 deletions

24
css/style.css Normal file
View File

@@ -0,0 +1,24 @@
body {
background-color: hsl(202, 61%, 93%);
color: hsl(195, 100%, 13%);
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header {
}
.logo {
}
.menu {
}

BIN
img/logo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

52
index.html Normal file
View File

@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>La Rondine</title>
<link rel="stylesheet" href="/css/style.css" >
</head>
<body>
<header>
<div class="logo">
<img src="/img/logo.jpg">
</div>
<div class="menu">
<ul>
<li>Home</li>
<li>Pizze</li>
<li>Dolci</li>
<li>Bevande</li>
</ul>
</div>
</header>
<div class="top">
<h1>Menù</h1>
</div>
<div class="pizze">
</div>
<div class="dolci">
</div>
<div class="bevande">
</div>
</body>
</html>