Untitled
4 months ago in Plain Text
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EXE-Datei herunterladen</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
}
.download-container {
text-align: center;
padding: 20px;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.download-button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #007bff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.download-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="download-container">
<h1>EXE-Datei herunterladen</h1>
<p>Klicken Sie auf die Schaltfläche unten, um die EXE-Datei herunterzuladen.</p>
<a href="https://drive.google.com/uc?export=download&id=1izxnhjjxi3S7Y0TAfoDqjsy_X1WZ95jX" class="download-button" download="bpaint.exe">Herunterladen</a>
</div>
</body>
</html>