<!DOCTYPE html> 
<html> 
<head> 
    <title>Error</title> 
    <link href="https://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet">  
    <style type="text/css"> 
        body{ 
            font-size: 72px; 
            padding-top: 5%; 
            padding-bottom: 5%; 
            text-align: center; 
            font-family: 'Fjalla One', sans-serif; 
            color:#f44336; 
            border: 1px solid black; 
            background-color: #f3f3f3; 
        } 
    </style> 
</head> 
<body> 
    <p style="color: black; font-size: 20px;"><? echo @$error; ?></p> 
</body> 
</html>
 
 |