49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Simulatore RAID Web</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
flex-direction: column;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
margin-bottom: 40px;
|
|
}
|
|
.buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
background-color: #007bff;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
a:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 style="margin-bottom: 0;">Simulatore RAID Web</h1>
|
|
<p style="margin-bottom: 0;">by Marco di Campi, forked and tweaked by Andrea Fiorencis<p>
|
|
<div class="buttons">
|
|
<a href="simulatore.html" target="_blank">Simulatore</a>
|
|
<a href="guida.html" target="_blank">Guida</a>
|
|
</div>
|
|
</body>
|
|
</html>
|