Facebook Twitter Instagram
    DeepCrazyWorld
    Facebook Twitter Instagram Pinterest YouTube
    • FLUTTER
      • FLUTTER APP
        • QRCode
        • Quiz App
        • Chat GPT
        • PDF App
        • News App
        • Fitness App
        • Weather App
        • BMI Calculator
        • GAME APP
        • Ecommerce App
        • wallpaper App
        • Finance app
        • Chat App
        • Wallet App
        • Taxi App
        • Quran app
        • Music player app
      • FLUTTER UI
        • Splash Screen
        • Onboarding Screen
        • Login Screen
        • Card Design
        • Drawer
    • PROJECT
      • Android Projects
      • College Projects
      • FLUTTER APP
      • Project Ideas
      • PHP Projects
      • Python Projects
    • SOURCE CODE
    • ANDROID
      • ANDROID APP
      • GAME APP
      • ANDROID STUDIO
    • MCQ
      • AKTU MCQ
        • RPA MCQ
        • COA MCQ
        • HPC MCQ
        • SPM MCQ
        • Renewable Energy All MCQ
        • Data Compression MCQ
        • Data Structure MCQ
        • Digital Image Processing MCQ
        • Software Engineering MCQ
        • Machine Learning MCQ
        • Artificial Intelligence MCQ
      • D PHARMA MCQ
        • Pharmaceutics – I MCQ
        • Pharmacognosy MCQ
        • Pharmaceutical Chemistry MCQ
        • Biochemistry and Clinical Pathology MCQ
        • Human Anatomy and Physiology MCQ
        • Heath Education and Community Pharmacy MCQ
    • INTERVIEW QUESTIONS
      • Flutter Interview Questions
      • INTERVIEW QUESTIONS
      • Python Interview Questions
      • Coding ninjas solution
    • MORE
      • WORDPRESS
        • SEO
        • TOP 10 WORDPRESS THEME
      • PRODUCTIVITY
      • Program
      • QUOTES
    DeepCrazyWorld
    Home»Program»Program To Create a Calendar Layout With HTML and CSS.
    Program

    Program To Create a Calendar Layout With HTML and CSS.

    DeepikaBy DeepikaAugust 24, 2019Updated:January 19, 2022No Comments2 Mins Read

    How to create a Calendar Layout with the help of HTML and CSS..as well as in this article we will be discuss about create a Calendar Layout…Create Calendar Layout With The Help of HTML And CSS

    Program Of Calendar

     <div class="month"> 
      <UL>
        <li class="prev"> </li>
         <li class="next"> </li>
        <li>August<br><span  style="font-size:18px">2018</span></li>
      </UL>
     </div>
    
    <ul class="weekdays">
      <li>Mo</li>
      <li>Tu</li>
       <li>We</li>
      <li>Th</li>
      <li>Fr</li>
       <li>Sa</li>
      <li>Su</li>
    </ul>
    
    <ul class="days"> 
       <li>1</li>
      <li>2</li>
      <li>3</li>
      <li>4</li>
       <li>5</li>
      <li>6</li>
      <li>7</li>
      <li>8</li>
       <li>9</li>
      <li><span class="active">10</span></li>
       <li>11</li>
      .....etc
    </ul>  

    Create CSS File

     ul 
    {
    list-style-type: none;}
     body {font-family: Verdana, sans-serif;}
     
     /* Month header */
     .month {
       padding: 70px 25px;
       width: 100%;
       background: #1abc9c;
      text-align:center;
     }
     
     /* Month list */
     .month ul {
       margin: 0;
       padding: 0;
     }
     
     .month ul li {
       color: white;
       font-size: 20px;
         text-transform: uppercase;
       letter-spacing: 3px;
     }
     
     /* Previous button inside month header */
     .month .prev {
       float: left;
       padding-top: 10px;
     }
     
     /* Next button */
     .month .next {
       float: right;
       padding-top: 10px;
     }
     
     /* Weekdays (Mon-Sun) */
     .weekdays {
         margin: 0;
         padding: 10px 0;
         background-color:#ddd;
     }
     
     .weekdays li {
         display: inline-block;
         width: 13.6%;
         color: #666;
         text-align: center;
     }
     
     /* Days (1-31) */
     .days {
         padding: 10px 0;
         background: #eee;
       margin: 0;
     }
     
     .days li {
       list-style-type: none;
         display: inline-block;
         width: 13.6%;
         text-align: center;
         margin-bottom: 5px;
         font-size:12px;
       color: #777;
     }
     
     /* Highlight the "current" day */
     .days li .active {
         padding: 5px;
         background: #1abc9c;
       color: white !important
     } 

    Share. Facebook Twitter LinkedIn WhatsApp Telegram Pinterest Reddit Email
    Previous ArticleDownload Photo Editor App Android Studio with source code
    Next Article TCS Interview Questions Of 2023

    Related Posts

    Top 5 Best Programming Languages To Learn in 2023

    Program 7 Mins Read

    OOP’s Concept Code – Basic operations and Relational Operators

    ANDROID STUDIO 3 Mins Read

    How to make a Piano using C++ Programming Language | source code Free

    Program 2 Mins Read

    DATA SCIENCE INTERVIEW 5 TIPS TO CRACK SUCCESSFULLY

    INTERVIEW QUESTIONS 5 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile March 29, 2025
    • Creating an Instruction UI Screen in Flutter Application March 29, 2025
    • Animated Backgrounds in Flutter: A Complete Guide March 15, 2025
    • How to make Diary App using flutter stepwise using getx August 31, 2024
    • How to Create Music Player UI screen with fully functional in flutter August 30, 2024
    • How to make ListView Builder Ui in flutter with Source Code August 29, 2024
    • Create a TabBar View in flutter with fully functional stepwise August 28, 2024
    • How to create TabBar view in flutter with source code step wise August 27, 2024
    • How to make Heart rate measure app with Flutter stepwise August 26, 2024
    • How to make ChatGpt App in flutter with source code Stepwise August 25, 2024
    Facebook Twitter Instagram Pinterest YouTube
    • About
    • Contact
    • Disclaimer
    • Privacy Policy
    Copyright by DeepCrazyWorld © 2025

    Type above and press Enter to search. Press Esc to cancel.