<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
div {
display: flex;
justify-content: center;
align-items: center;
width: 500px;
height: 200px;
margin: 0 auto;
padding: 10px;
background: #262626;
font-size: 100px;
font-family: Arial, Helvetica, sans-serif;
}
p {
color: #1a1a1a;
text-shadow: 1px 2px 3px #666666;
}
</style>
</head>
<body>
<div>
<p><strong>W3DOCS</strong></p>
</div>
</body>
</html>