forged Logo

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        .notification-box {
            border: 2px solid red;
            color: black;
            padding: 20px;
            border-radius: 5px;
            font-family: Arial, sans-serif;
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
        }
    </style>
    <title>Notification Box</title>
</head>
<body>

    <div class="notification-box">
        <b>Note:</b> This is a <b><i>limited stock</i></b> item! By clicking the Pre-Order button, you are requesting our Customer Sales Representative to contact you about your order. <br>Please ensure your contact details and delivery address are up-to-date.
    </div>

</body>
</html>