পৃষ্ঠাসমূহ

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

Saturday, March 11, 2017

Pure.CSS Icons

PURE.CSS supports the following popular icon libraries:
  • Font Awesome Icons
  • Google Material Icons
  • Bootstrap Icons

Usage

To use an icon, put the name of the icon in the class of an HTML <i> element.

Example

purecss_icons.htm
<html>
   <head>
      <title>The PURE.CSS Icons</title>
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="https://yui.yahooapis.com/pure/0.6.0/pure-min.css">
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
   <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
   <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
      <style>  
         .xsmall {
            font-size: 70%;
         }
         .small {
            font-size: 85%;
         }
         .large {
            font-size: 110%;
         }
         .xlarge {
            font-size: 125%;
         }
      </style>
   </head>
   <body> 
      <h2>Icons Demo</h2>
      <hr/>
      <h3>Font Awesome Icon Demo</h3>
      <i class="fa fa-cloud xsmall"></i>
      <i class="fa fa-cloud small"></i>
   <i class="fa fa-cloud"></i>
      <i class="fa fa-cloud large"></i>
      <i class="fa fa-cloud xlarge"></i>
      <h3>Google Material Design Icon Demo</h3>      
      <i class="material-icons xsmall">cloud</i> 
      <i class="material-icons small">cloud</i>
      <i class="material-icons large">cloud</i>
      <i class="material-icons xlarge">cloud</i>
   <i class="material-icons">cloud</i>
      <h3>Bootstrap Icon Demo</h3>
      <i class="glyphicon glyphicon-cloud xsmall"></i>
      <i class="glyphicon glyphicon-cloud small"></i>
   <i class="glyphicon glyphicon-cloud"></i>
      <i class="glyphicon glyphicon-cloud large"></i>
      <i class="glyphicon glyphicon-cloud xlarge"></i>
   <h3>Button with Icon Demo</h3>
      <button class="pure-button"><i class="fa fa-cog"></i> Settings</button>
      <a class="pure-button" href="#"><i class="fa fa-shopping-cart fa-lg"></i> Checkout</a>
   </body>
</html>

Result

Verify the result.

No comments:

Post a Comment