Onsen UI CSS Component Basic Button Last Updated : 03 Jul, 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. Buttons are one of the most common UI elements. When we want to perform some action and want to navigate to a different page then we can use the button. Onsen UI CSS Component Basic Button is used to create the button using the button class. Onsen UI CSS Component Basic Button Class: button: This class is used to create the basic button.Syntax: <button class="button"> ... </button> Example 1: The following example demonstrates the Onsen UI CSS Component Basic 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"> <script src= "https://unpkg.com/onsenui/js/onsenui.min.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> Onsen UI CSS Component Basic Button </h3> <button class="button"> GeeksforGeeks </button> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component Basic 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"> <script src= "https://unpkg.com/onsenui/js/onsenui.min.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> Onsen UI CSS Component Basic Button </h3> <button class="button"> Java </button> <button class="button" disabled> Python </button> <button class="button"> C++ </button> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#button-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component Basic Button gopaldhangar Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads Onsen UI CSS Component Basic Radio Button Onsen UI is an innovative and practical HTML5 framework that is available for free (UI). Additionally, it makes UI creation simpler so that app developers may concentrate on the functionality of the software. With a large selection of high-quality UI elements made specifically for mobile apps and pa 3 min read Onsen UI CSS Component Basic Toolbar 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 Basic Toolbar Button is used to create the basic toolbar buttons using the below Onsen UI Toolbar 2 min read Onsen UI 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 will see the various Button CSS Components in Onsen UI. The Button is used to perform some action whe 3 min read Onsen UI CSS Component Segment Button Bar 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. The segment is used to create a group of related content. Onsen UI CSS Component Segment Button Bar is used to create the 2 min read Onsen UI CSS Component Light 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 Quiet 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 Radio Button CSS Components Onsen UI is a free open-source HTML5 framework for creating innovative and usable user interfaces (UI). It also simplifies user interface design, letting app developers concentrate on the programâs functionality. The pre-built CSS components from Onsen UI make it simple to quickly construct flexible 2 min read Onsen UI CSS Component Call To Action 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 Outline 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 Basic Switch Onsen UI is a free open-source HTML5 framework for creating unique and usable UIs (UI). It also streamlines UI development, allowing app developers to focus on the program's functionality. Onsen UI is a large collection of powerful user interface components designed specifically for mobile apps and 3 min read Like