Onsen UI CSS Component Material Toolbar Button Last Updated : 22 Jun, 2022 Comments Improve Suggest changes Like Article Like Report Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Onsen UI CSS Component Material Toolbar Button is used to create the material toolbar buttons using the toolbar-button--material class. To use the icons inside the button, we will use Material design icons to display icons. Onsen UI CSS Component Material Toolbar Button Class: toolbar-button--material: This class is used to create the material toolbar button. Syntax: <span class="toolbar-button toolbar-button--material"> ... </span> Example 1: The following example demonstrates the Onsen UI CSS Component Material Toolbar Button. HTML <!DOCTYPE html> <html> <head> <!-- CDN links of Onsen UI library --> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsenui.css"> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsen-css-components.min.css"> <link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css"> <script src= "https://unpkg.com/onsenui/js/onsenui.min.js"> </script> </head> <body> <center> <h2 style="color: green;"> GeeksforGeeks </h2> <strong> Onsen UI CSS Component Material Toolbar Button </strong> <br> <br> <button class="toolbar-button toolbar-button--material"> <i class="zmdi zmdi-account-circle"></i> Onsen </button> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component Material Toolbar Button. HTML <!DOCTYPE html> <html> <head> <!-- CDN links of Onsen UI library --> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsenui.css"> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsen-css-components.min.css"> <link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css"> <script src= "https://unpkg.com/onsenui/js/onsenui.min.js"> </script> </head> <body> <center> <h2 style="color: green;"> GeeksforGeeks </h2> <strong> Onsen UI CSS Component Material Toolbar Button </strong> <br> <br> <span class="toolbar-button toolbar-button--material"> <i class="zmdi zmdi-airplane"></i> Airplane </span> <span class="toolbar-button toolbar-button--material"> <i class="zmdi zmdi-audio"></i> </span> <span class="toolbar-button toolbar-button--material"> <i class="zmdi zmdi-album"></i> Album </span> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#toolbar-button-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component Material Toolbar Button gopaldhangar Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads Onsen UI CSS Component Material Toolbar Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. In this article, we will see the Onsen UI CSS Component Material Toolbar. The toolbar is a horizontal bar with some toolb 2 min read Onsen UI CSS Component Material Button Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Buttons are one of the most common UI elements. When we want to perform some action and want to navigate to a different p 2 min read Onsen UI CSS Component Material Radio Button Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Onsen UI CSS Component Material Radio Button is used to create the material radio button using Radio Button classes. To c 2 min read Onsen UI Toolbar Button CSS Components Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. In this article, we are going to implement the Onsen UI Toolbar button CSS Component. The Toolbar Button Component is use 2 min read Onsen UI CSS Component Material Tabbar Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Onsen UI CSS Components are pre-built CSS components that may be used to rapidly create adaptive and attractive user inte 2 min read Like