Semantic-UI Form Checkbox Content Last Updated : 23 Mar, 2022 Comments Improve Suggest changes Like Article Like Report Semantic UI is the open-source framework that used CSS and jQuery to make our websites look beautiful and responsive. It has predefined classes like bootstrap for use to make our website more interactive. It has some pre-built semantic components and we can use these components to create a responsive website. The form is a container that has different types of input elements such as text fields, submit buttons, radio buttons, checkboxes, etc. Semantic-UI Form is used to create the beautiful form using form classes. Semantic-UI Form Checkbox Content is used to create the checkbox using the checkbox class. In this article, we will discuss Form Checkbox Content in Semantic-UI. Semantic-UI Form Checkbox Content Class: checkbox: This class is used to create the checkbox. Syntax: <div class="ui checkbox"> <input type="checkbox" class="hidden"> </div> Example 1: The following code demonstrates the Semantic-UI Form Checkbox Content with standard checkbox and radio checkbox. HTML <!DOCTYPE html> <html> <head> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet"/> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script src= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"> </script> </head> <body> <center> <h2 style="color: green"> GeeksforGeeks </h2> <h3> Semantic-UI Form Checkbox Content </h3> <div class="ui form"> <div class="inline field"> <div class="ui checkbox"> <input type="checkbox" tabindex="0" class="hidden"> <label>Standard Checkbox</label> </div> </div> <div class="inline field"> <div class="ui radio checkbox"> <input type="checkbox" tabindex="0" class="hidden"> <label>Radio Checkbox</label> </div> </div> </div> </center> <script> $('.ui.checkbox').checkbox(); </script> </body> </html> Output: Example 2: The following code demonstrates the Semantic-UI Form Checkbox Content with slider checkbox and toggle checkbox. HTML <!DOCTYPE html> <html> <head> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet"/> <script src="https://code.jquery.com/jquery-3.1.1.min.js"> </script> <script src= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"> </script> </head> <body> <center> <h2 style="color: green"> GeeksforGeeks </h2> <h3> Semantic-UI Form Checkbox Content </h3> <div class="ui form"> <div class="inline field"> <div class="ui slider checkbox"> <input type="checkbox" tabindex="0" class="hidden"> <label>Slider Checkbox</label> </div> </div> <div class="inline field"> <div class="ui toggle checkbox"> <input type="checkbox" tabindex="0" class="hidden"> <label>Toggle Checkbox</label> </div> </div> </div> </center> <script> $('.ui.checkbox').checkbox(); </script> </body> </html> Output: Reference: https://semantic-ui.com/collections/form.html#checkbox Comment More infoAdvertise with us Next Article Semantic-UI Form Checkbox Content singh_teekam Follow Improve Article Tags : Web Technologies CSS Geeks Premier League Geeks-Premier-League-2022 Semantic-UI Semantic-UI Collections +1 More Similar Reads Semantic-UI Form Radio Checkbox Content Semantic UI is the open-source framework that used CSS and jQuery to make our websites look beautiful and responsive. It has predefined classes like bootstrap for use to make our website more interactive. It has some pre-built semantic components and we can use these components to create a responsiv 3 min read Semantic-UI Form Content Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to make your website look more amazing. It uses a class to add CSS to the elements. Forms provide us with a way to take input from t 6 min read Semantic-UI Form Text Area Content Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. Semantic UI provides us with a very easy way to style the web app instead of using CS 2 min read Semantic-UI Form Field Content Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. It uses a class to add CSS to the elements. A form is the section of a document that 2 min read Semantic-UI Checkbox Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS and jQuery to incorporate in different frameworks. Semantic UI offers us checkbox too use checkboxes, we can apply the inp 3 min read Semantic-UI Form Fields Content Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. It uses a class to add CSS to the elements. A form is the section of a document that 2 min read ReactJS Semantic UI Checkbox Module Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks. In this article, we will know how to use Checkbox Module in React 3 min read Semantic-UI Form Message Content Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. It uses a class to add CSS to the elements. A form is the section of a document that 2 min read Semantic-UI Form Dropdown Content Semantic UI is an open-source framework that used CSS and jQuery to make our websites look beautiful and responsive. It has predefined classes like bootstrap for use to make our website more interactive. It has some pre-built semantic components and we can use these components to create a responsive 2 min read Semantic-UI Checkbox Read-only State Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing. Semantic UI has a bunch of components for user interface design. One of them is âChec 2 min read Like