Created landing page
This commit is contained in:
		
							
								
								
									
										142
									
								
								index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										142
									
								
								index.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,142 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html lang="en">
 | 
			
		||||
<head>
 | 
			
		||||
    <meta charset="UTF-8">
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
			
		||||
    <title>Divine Couture - Coming Soon</title>
 | 
			
		||||
    <style>
 | 
			
		||||
        @import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Montserrat&display=swap');
 | 
			
		||||
 | 
			
		||||
        * {
 | 
			
		||||
            margin: 0;
 | 
			
		||||
            padding: 0;
 | 
			
		||||
            box-sizing: border-box;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        body {
 | 
			
		||||
            font-family: 'Arial', sans-serif;
 | 
			
		||||
            background-color: #1e1e1e;
 | 
			
		||||
            color: #ffffff;
 | 
			
		||||
            display: flex;
 | 
			
		||||
            flex-direction: column;
 | 
			
		||||
            justify-content: center;
 | 
			
		||||
            align-items: center;
 | 
			
		||||
            height: 100vh;
 | 
			
		||||
            overflow: hidden;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .container {
 | 
			
		||||
            text-align: center;
 | 
			
		||||
            position: relative;
 | 
			
		||||
            padding: 20px;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .logo {
 | 
			
		||||
            margin-bottom: 20px;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .logo img {
 | 
			
		||||
            min-width: 20rem;
 | 
			
		||||
            /* max-width: 12rem; */
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        h1 {
 | 
			
		||||
            font-size: 4rem;
 | 
			
		||||
            font-family: 'Staatliches', sans-serif;
 | 
			
		||||
            background: linear-gradient(135deg, #B57C1A, #ffd700);
 | 
			
		||||
            -webkit-background-clip: text;
 | 
			
		||||
            -webkit-text-fill-color: transparent;
 | 
			
		||||
            margin-bottom: 10px;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        h2 {
 | 
			
		||||
            font-size: 2rem;
 | 
			
		||||
            font-family: 'Montserrat', sans-serif;
 | 
			
		||||
            background: linear-gradient(135deg, #B57C1A, #ffd700);
 | 
			
		||||
            -webkit-background-clip: text;
 | 
			
		||||
            -webkit-text-fill-color: transparent;
 | 
			
		||||
            margin-bottom: 20px;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        p {
 | 
			
		||||
            font-family: 'Montserrat', sans-serif;
 | 
			
		||||
            font-size: 1.0rem;
 | 
			
		||||
            color: #c0c0c0;
 | 
			
		||||
            max-width: 500px;
 | 
			
		||||
            margin: 0 auto;
 | 
			
		||||
            line-height: 1.6;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .accent-line {
 | 
			
		||||
            width: 100px;
 | 
			
		||||
            height: 4px;
 | 
			
		||||
            /* background: linear-gradient(135deg, #b8860b, #ffd700); */
 | 
			
		||||
            background: #B57C1A;
 | 
			
		||||
            margin: 20px auto;
 | 
			
		||||
            border-radius: 2px;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .contact {
 | 
			
		||||
            position: absolute;
 | 
			
		||||
            bottom: 0;
 | 
			
		||||
            left: 0;
 | 
			
		||||
            width: 100%;
 | 
			
		||||
            display: flex;
 | 
			
		||||
            justify-content: center;
 | 
			
		||||
            align-items: center;
 | 
			
		||||
            background-color: #1e1e1e;
 | 
			
		||||
            padding: 20px 0;
 | 
			
		||||
            font-family: 'Montserrat', sans-serif;
 | 
			
		||||
            font-size: 0.9rem;
 | 
			
		||||
            color: #c0c0c0;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .contact div {
 | 
			
		||||
            display: flex;
 | 
			
		||||
            align-items: center;
 | 
			
		||||
            gap: 10px;
 | 
			
		||||
            margin: 0 20px;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        .contact div img {
 | 
			
		||||
            width: 20px;
 | 
			
		||||
            height: 20px;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        a {
 | 
			
		||||
            color: inherit;
 | 
			
		||||
            text-decoration: inherit;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        @media (max-width: 768px) {
 | 
			
		||||
            .contact {
 | 
			
		||||
                position: relative;
 | 
			
		||||
                flex-direction: column;
 | 
			
		||||
                justify-content: center;
 | 
			
		||||
                align-items: center;
 | 
			
		||||
                padding: 20px;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            .contact div {
 | 
			
		||||
                margin: 10px 0;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    </style>
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
    <div class="container">
 | 
			
		||||
        <div class="logo">
 | 
			
		||||
            <img src="divine couture-no background.svg" alt="Company Logo">
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="accent-line"></div>
 | 
			
		||||
        <p>Our website is on its way. Stay tuned for something special as we look to deliver style, for every occasion. We can't wait to share more.</p>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="contact">
 | 
			
		||||
        <div><img src="email-icon.png" alt="Email Icon"><a href="mailto:contact@divine-couture.co.uk">contact@divine-couture.co.uk</a></div>
 | 
			
		||||
        <!-- <div><img src="website-icon.png" alt="Website Icon"><a href="https://www.divine-couture.co.uk">www.divine-couture.co.uk</a></div> -->
 | 
			
		||||
        <div><img src="phone-icon.png" alt="Phone Icon"><a href="tel:+447713133027">+44 (0) 77 13 13 30 27</a></div>
 | 
			
		||||
        <div><img src="tiktok-icon.png" alt="TikTok Icon"><a href="https://www.tiktok.com/@divinecoutureee">divinecoutureee</a></div>
 | 
			
		||||
    </div>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user