Skip to content

DMS-Menula/releaseSoonTemplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

RELEASE WEBSITE SOON TEMPLETE

A Template For Will Be Released Soon .

image

CODE



<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Will Be Released Soon</title>
    
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
    
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">

    <style>
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            background-color: #212529; 
            color: #f8f9fa;
            font-family: 'Montserrat', sans-serif; 
        }

        .coming-soon-container {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;  
            text-align: center;
        }

        .centered-text h4 {
            font-size: 2.5rem; 
            font-weight: 700; 
            letter-spacing: 2px;
        }
    </style>
</head>
<body>

    <div class="coming-soon-container">
        
        <div class="centered-text">
            
            <h4 class="text-white">
                PAGE WILL BE RELEASED SOON
            </h4>
            
        </div>

    </div>
    
</body>
</html>