Onsen UI CSS Component List title Last Updated : 18 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 List title is used to give a title of the list. We can give the title using the list-title class. Onsen UI CSS Component List title Class: list-title: This class is used to give the title of the list. Syntax: <div class="list-title"> ... </div> <ul class="list"> ... </ul> Example 1: The following example demonstrates the Onsen UI CSS Component List title. 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> <h2 style="color: green;"> GeeksforGeeks </h2> <strong> Onsen UI CSS Component List title </strong> <div class="list-title"> This is list Title </div> <ul class="list"> <li class="list-item"> GFG item 1 </li> <li class="list-item"> GFG item 2 </li> </ul> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component List title. 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> <h2 style="color: green;"> GeeksforGeeks </h2> <strong> Onsen UI CSS Component List title </strong> <div class="list-title"> TITLE IS GEEKSFORGEEKS </div> <ul class="list"> <li class="list-item"> <div class="list-item__left"> <img class="list-item__thumbnail" src= "https://media.geeksforgeeks.org/wp-content/uploads/20210318103632/gfg.png"> </div> <div class="list-item__center"> <div class="list-item__title"> GeeksforGeeks website </div> <div class="list-item__subtitle"> A Computer Science portal for geeks. </div> </div> </li> <li class="list-item"> <div class="list-item__left"> <img class="list-item__thumbnail" src= "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20200617163105/gfg-logo.png"> </div> <div class="list-item__center"> <div class="list-item__title"> GFG </div> <div class="list-item__subtitle"> GeeksforGeeks </div> </div> </li> </ul> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#list-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component List title H harendra4373 Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads Onsen UI CSS Component Tappable List 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. Lists are used to store data or information on web pages in ordered or unordered form. Onsen UI CSS Component Tappable Li 2 min read Onsen UI List CSS Components In this article, we will learn how to include lists using Onsen UI. 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. Lists are used to store data or information on web pa 3 min read Onsen UI CSS Component Material List Title 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 List Title is used to create the material list title at the top of the list items. To cre 2 min read Onsen UI CSS Component List Item with Subtitle 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 List Item with Subtitle is used to create the subtitle of the list item using the list-item__subti 2 min read Onsen UI CSS Component Toolbar Item 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 Toolbar Item. The toolbar is a horizontal bar with some toolbar i 2 min read Like