পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Thursday, March 16, 2017

W3.CSS - Cards

W3.CSS has several special classes to display containers as paper-like cards with shadow.
Class NameDescription
w3-cardStyles a container for any HTML content with border
w3-card-2Styles a container for any HTML content with 2px bordered shadow
w3-card-4Styles a container for any HTML content with 4px bordered shadow
w3-card-8Styles a container for any HTML content with 8px bordered shadow
w3-card-12Styles a container for any HTML content with 12px bordered shadow

Example

w3css_cards.htm
<html>
   <head>
      <title>The W3.CSS Syntax Highlighter</title>
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="https://www.w3schools.com/lib/w3.css">
   <style>
      div {
      width : 200px; 
   height : 200px; 
   
   } 
   </style>
   </head>
   <body>   
      <header class="w3-container w3-teal">   
         <h2>Yellow Card Demo</h2>   
      </header>
   <br/>
      <div class="w3-card w3-yellow">
         <p><b>TODO:</b> Learn HTML5</p>
      </div>
   <div class="w3-card-2 w3-yellow">
         <p><b>TODO:</b> Learn HTML5</p>
      </div>
   <div class="w3-card-4 w3-yellow">
         <p><b>TODO:</b> Learn HTML5</p>
      </div>
   <div class="w3-card-8 w3-yellow">
         <p><b>TODO:</b> Learn HTML5</p>
      </div>
   <br/>
   <header class="w3-container w3-teal">   
         <h2>White Card Demo</h2>   
      </header>
   <br/>
      <div class="w3-card w3-white">
         <p><b>TODO:</b> Learn W3.CSS</p>
      </div>
   <div class="w3-card-8 w3-white">
         <p><b>TODO:</b> Learn HTML5</p>
      </div>
   <br/>
      <div class="w3-card-4" style="width:550px;">
         <header class="w3-container w3-blue">
            <h1>HTML5 Tutorial</h1>
         </header>
         <div class="w3-container" style="width:550px;">
            <p>The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionality. The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.</p>
         </div>
      </div>
   <br/>
   <header class="w3-container w3-teal">   
         <h2>Image Card Demo</h2>   
      </header>
   <br/>
      <div class="w3-card-12" style="width:255px; height: 230px;">
        <img src="/html5/images/html5-mini-logo.jpg" alt="html5">
           <div class="w3-container">
              <p>Learn HTML5</p>
           </div>
      </div>
   </body>
</html>

Result

Verify the result.

No comments:

Post a Comment