School-HTML/3AIN/Esercizi TPS Vichi per 2025.../index.html

107 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>Esercizi TPS Vichi per 2025-04-26</title>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Nunito', sans-serif;
background: linear-gradient(135deg, #d2e1f0, #f9e9ff);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
-webkit-user-select: none;
-webkit-touch-callout: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.container {
max-width: 900px;
padding: 40px;
background: white;
border-radius: 20px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
font-size: 32px;
color: #333;
margin-bottom: 30px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
}
.card {
background-color: #f2f5fa;
padding: 20px;
border-radius: 15px;
text-decoration: none;
color: #333;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
}
.card:hover {
transform: translateY(-5px);
background-color: #e4ecf7;
}
.card h2 {
font-size: 20px;
margin-bottom: 10px;
}
.card p {
font-size: 14px;
color: #555;
}
footer {
margin-top: 30px;
font-size: 14px;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<h1>💡 Esercizi TPS Vichi per 2025-04-26</h1>
<div class="grid">
<a href="Esercizio1.html" class="card" target="_blank">
<h2>🧩 Esercizio 1</h2>
<p>Trova la parola più lunga in una frase.</p>
</a>
<a href="Esercizio2.html" class="card" target="_blank">
<h2>🧩 Esercizio 2</h2>
<p>Ordina i numeri</p>
</a>
<a href="Esercizio3.html" class="card" target="_blank">
<h2>🧩 Esercizio 3</h2>
<p>Generatore di acronimi</p>
</a>
<a href="EsercizioOmaggio.html" class="card" target="_blank">
<h2>🧩 Esercizio Omaggio</h2>
<p>Verifica se una frase è palindroma.</p>
</a>
</div>
<footer>
Creato da Manuel Vichi
</footer>
</div>
<script src="esercizi.js"></script>
</body>
</html>