Home

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BrandNio</title>

<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">

<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#cdebe5;
}

/* Navbar */

.navbar{
    width:80%;
    margin:20px auto;
    background:#fff;
    border-radius:20px;
    padding:15px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-box{
    width:55px;
    height:55px;
    background:#13c17c;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:32px;
    font-weight:700;
}

.logo-text h2{
    font-size:18px;
    line-height:20px;
    color:#333;
}

.logo-text span{
    color:#13c17c;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#444;
    font-size:16px;
}

.download-btn{
    background:#000;
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:40px;
    cursor:pointer;
    font-weight:600;
}

/* Hero */

.hero{
    width:80%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:80vh;
    gap:50px;
}

.left{
    flex:1;
}

.rating{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.users{
    display:flex;
}

.users img{
    width:45px;
    height:45px;
    border-radius:50%;
    border:3px solid white;
    margin-left:-10px;
}

.badge{
    width:50px;
    height:50px;
    background:#ff8b3d;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
}

.stars{
    color:#10b981;
    font-size:22px;
}

.hero h1{
    font-size:70px;
    line-height:85px;
    font-weight:800;
    color:#000;
}

.hero p{
    margin-top:25px;
    font-size:20px;
    color:#444;
    max-width:700px;
}

.store-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.store-btn{
    background:#111;
    color:#fff;
    padding:14px 25px;
    border-radius:10px;
    text-decoration:none;
    font-size:16px;
}

/* Right Gallery */

.right{
    flex:1;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.gallery img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.tall{
    height:260px;
}

.small{
    height:180px;
}

.medium{
    height:220px;
}

@media(max-width:991px){

.hero{
    flex-direction:column;
    text-align:center;
}

.nav-links{
    display:none;
}

.hero h1{
    font-size:45px;
    line-height:55px;
}

.rating{
    justify-content:center;
}

.store-buttons{
    justify-content:center;
}
}

</style>
</head>
<body>

<nav class="navbar">

    <div class="logo">
        <div class="logo-box">F</div>

        <div class="logo-text">
            <h2>FESTIVAL <br><span>POST</span></h2>
        </div>
    </div>

    <ul class="nav-links">
        <li><a href="#">Home</a></li>
        <li><a href="#">Industries</a></li>
        <li><a href="#">Features</a></li>
        <li><a href="#">Services</a></li>
        <li><a href="#">Videos</a></li>
        <li><a href="#">Testimonials</a></li>
        <li><a href="#">FAQs</a></li>
        <li><a href="#">Contact</a></li>
    </ul>

    <button class="download-btn">Download App</button>

</nav>

<section class="hero">

<div class="left">

<div class="rating">

<div class="users">
<img src="https://i.pravatar.cc/100?img=1">
<img src="https://i.pravatar.cc/100?img=2">
<img src="https://i.pravatar.cc/100?img=3">
</div>

<div class="badge">80+</div>

<div>
<div class="stars">★★★★★</div>
<p style="margin:0;">10M+ Happy Customer</p>
</div>

</div>

<h1>
Promote Your<br>
Business with 100K+<br>
Images & 50K+ Videos
</h1>

<p>
Best Digital Marketing app to promote your business for 365 Days.
Save and share images or videos with your business logo &
company details.
</p>

<div class="store-buttons">
<a href="#" class="store-btn">Google Play</a>
<a href="#" class="store-btn">App Store</a>
</div>

</div>

<div class="right">

<div class="gallery">

<img class="small" src="https://images.unsplash.com/photo-1506744038136-46273834b3fb">
<img class="small" src="https://images.unsplash.com/photo-1517841905240-472988babdf9">

<img class="medium" src="https://images.unsplash.com/photo-1519389950473-47ba0277781c">
<img class="tall" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330">

<img class="small" src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f">
<img class="small" src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3">

</div>

</div>

</section>

</body>
</html>