Responsive Blog Page Design using HTML and CSS

Hey, developers welcome to Day 19 of our 90Days 90Projects challenge. And in Day 19 we are going to create a Responsive Blog Page Design using HTML and CSS

So to run the code you just need to copy the HTML and CSS code and run it into your code Editor. 

Preview

Registration Form Design in HTML and CSS with Code

HTML Code

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title> Responsive Blog Page Design </title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <!-- Navbar -->
    <nav class="navbar">
        <h3> Navbar Goes Here </h3>
    </nav>
    <!-- Blog section -->
    <section class="blogs-container">
        <!-- Blog Item  -->
        <div class="blogs-item">
            <div class="blog-image">
                <img src="./blog-image.png" alt="blog-image">
            </div>
            <p class="description">
                Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam suscipit fugiat ducimus sint
                expedita
                ratione temporibus. Neque, voluptatum?
            </p>
            <div class="content">
                <div class="blog-details">
                    <p class="tag">Add to <span> Video </span></p>
                    <p> December 20, 2019 </p>
                </div>
                <div class="about-author">
                    <img src="./author.png" alt="author">
                    <p> By - <span> Raju Webdev </span></p>
                </div>
            </div>
        </div>

        <!-- Blog Item  -->
        <div class="blogs-item">
            <div class="blog-image">
                <img src="./blog-image.png" alt="blog-image">
            </div>
            <p class="description">
                Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam suscipit fugiat ducimus sint
                expedita
                ratione temporibus. Neque, voluptatum?
            </p>
            <div class="content">
                <div class="blog-details">
                    <p class="tag">Add to <span> Video </span></p>
                    <p> December 20, 2019 </p>
                </div>
                <div class="about-author">
                    <img src="./author.png" alt="author">
                    <p> By - <span> Raju Webdev </span></p>
                </div>
            </div>
        </div>

        <!-- Blog Item  -->
        <div class="blogs-item">
            <div class="blog-image">
                <img src="./blog-image.png" alt="blog-image">
            </div>
            <p class="description">
                Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam suscipit fugiat ducimus sint
                expedita
                ratione temporibus. Neque, voluptatum?
            </p>
            <div class="content">
                <div class="blog-details">
                    <p class="tag">Add to <span> Video </span></p>
                    <p> December 20, 2019 </p>
                </div>
                <div class="about-author">
                    <img src="./author.png" alt="author">
                    <p> By - <span> Raju Webdev </span></p>
                </div>
            </div>
        </div>

        <!-- Blog Item  -->
        <div class="blogs-item">
            <div class="blog-image">
                <img src="./blog-image.png" alt="blog-image">
            </div>
            <p class="description">
                Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam suscipit fugiat ducimus sint
                expedita
                ratione temporibus. Neque, voluptatum?
            </p>
            <div class="content">
                <div class="blog-details">
                    <p class="tag">Add to <span> Video </span></p>
                    <p> December 20, 2019 </p>
                </div>
                <div class="about-author">
                    <img src="./author.png" alt="author">
                    <p> By - <span> Raju Webdev </span></p>
                </div>
            </div>
        </div>
    </section>
</body>
</html>


CSS Code

style.css

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

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

.navbar {
    text-align: center;
    padding: 1rem;
    margin-bottom: .5rem;
    background: rgb(13, 13, 13);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: #fff;
}

.blogs-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.blogs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: .3rem;
    justify-content: center;
    padding: .3rem;
    width: 260px;
    overflow: hidden;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: #fff;
    margin: .5rem;
    cursor: pointer;
    transition: all .3s;
}

.blogs-item:hover {
    transform: translateY(-4px);
    box-shadow: 10px 8px 30px rgb(0 0 0 / 30%);
}

.blog-image {
    overflow: hidden;
    border-radius: .3rem;
}

.blog-image:hover img {
    transition: all .3s;
    transform: scale(1.1);
    border-radius: .3rem;
}

.blog-image img {
    width: 100%;
    background-size: contain;
    border-radius: .3rem;
}

.about-author img {
    width: 20%;
}

.description {
    font-size: .75rem;
}

.blog-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .7rem;
    margin-top: 1rem;
}

.about-author {
    display: flex;
    align-items: center;
    font-size: .6rem;
    position: relative;
    bottom: 0;
    left: -0.8rem;
}

.about-author span {
    font-weight: bold;
}

@media screen and (max-width: 551px) {
    .blogs-container {
        justify-content: center;
    }
}

Learn HTML- Learn Now

Learn CSS- Learn Now

Visit our 90Days 90Projects Page- Visit Now

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.

Top Post Ad

Below Post Ad

Ads Section