File: /home/wbwebdes/domains/clients.wb-webdesign.com/public_html/index.html
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Toegang tot het WB Webdesign portaal voor facturatie, support en webmail.">
<title>WB Webdesign Portaal</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background: url('uploads/background.jpg') no-repeat center center fixed;
background-size: cover;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
header {
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 2rem;
margin: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
header p {
font-size: 1rem;
margin: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.tiles {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
width: 90%;
max-width: 1200px;
}
.tile {
background-color: rgba(255, 255, 255, 0.9);
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: transform 0.2s, box-shadow 0.2s;
}
.tile:hover {
transform: translateY(-5px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.tile a {
text-decoration: none;
color: #333;
font-weight: 500;
display: block;
}
.tile a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Welkom bij het WB Webdesign Portaal</h1>
<p>Toegang tot al uw WB Webdesign diensten</p>
</header>
<div class="tiles">
<div class="tile"><a href="https://invoice.zohosecure.eu/portal/wbwebdesign/signin" target="_blank"
rel="noopener noreferrer">Facturatie Portaal</a></div>
<div class="tile"><a href="https://wb-webdesign.freshdesk.com/support/home" target="_blank"
rel="noopener noreferrer">Support</a></div>
<div class="tile"><a href="https://webmail.wb-webdesign.com" target="_blank"
rel="noopener noreferrer">Webmail</a></div>
<div class="tile"><a href="https://legal.wb-webdesign.com" target="_blank" rel="noopener noreferrer">Legal</a>
</div>
<div class="tile"><a href="https://status.wb-webdesign.com" target="_blank" rel="noopener noreferrer">Status</a>
</div>
<div class="tile"><a href="https://domain.wb-webdesign.com" target="_blank" rel="noopener noreferrer">In
progress</a></div>
</div>
</body>
</html>