Tag Archives: HTML5

Basic HTML5 “Coming soon” and “Scheduled maintenance” page templates

Text only page templates for website status messages.

Coming soon

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Website coming soon</title>
    <style type="text/css">
        h1 { text-align: center; }
    </style>
</head>
<body>
    <h1>Coming soon</h1>
</body>
</html>

View demo on CodePen

 

Scheduled maintenance

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Scheduled maintenance</title>
    <style type="text/css">
        h1 { text-align: center; }
    </style>
</head>
<body>
    <h1>Site temporarily unavailable due to scheduled maintenance</h1>
</body>
</html>

View demo on CodePen