Showing posts with label Coding classes Puranpur. Show all posts
Showing posts with label Coding classes Puranpur. Show all posts

Thursday, July 16, 2026

Gap in CSS Grid


The gap property in CSS is used to create space between items inside Flexbox, Grid, and Multi-column layouts. It is cleaner than using margins because it only adds spacing between elements, not around the outside.


HTML Code 

<div class="grid-container">

    <div>1</div>

    <div>2</div>

    <div>3</div>

    <div>4</div>

</div>


CSS Code

<style>

.grid-container {

    display: grid;

    grid-template-columns: repeat(2, 150px);

    gap: 20px;

}


.grid-container div {

    background: #4CAF50;

    color: white;

    padding: 20px;

    text-align: center;

}

</style>





Tuesday, July 14, 2026

# 🚀 Coding Classes in Puranpur Have Started! 💻



🌟 **Build Your Future with WDS (Website Development Services)** Admissions are now open for our **Offline Coding Classes in Puranpur**! 📚 **Courses Available:** ✅ Full Stack Web Development ✅ HTML, CSS & JavaScript ✅ PHP & MySQL ✅ Python Programming ✅ Software Development ✅ Website Development ✅ Live Projects & Practical Training ✅ Internship Guidance 👨‍💻 Learn from industry professionals with hands-on projects and real-world experience. 🎯 ** Enroll Today!** **WDS – Website Development Services** *Learn • Build • Grow Your Career* 🚀 Call us - +91-7080234447

Professional Trigonometric Calculator using HTML, CSS, and JavaScript.

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport...