Semantic-UI Form Radio Checkbox Content Last Updated : 10 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. Form Radio Checkbox Content is used to create the radio checkboxes to select the option from the set of options. We will use radio class to create the radio checkbox. In this article, we will discuss Form Radio Checkbox Content in Semantic-UI. Semantic-UI Form Radio Checkbox Content Class: radio: This class is used to create the radio checkbox. Syntax: <div class="ui radio checkbox"> <input type="radio" class="hidden"> </div> Example 1: The following code demonstrates the Semantic-UI Form Radio Checkbox Content in the horizontal direction. HTML <!DOCTYPE html> <html> <head> <title>Semantic-UI Form Radio Checkbox Content</title> <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> <h2 style="color: green"> GeeksforGeeks </h2> <h3>Semantic-UI Form Radio Checkbox Content</h3> <div class="ui form"> <div class="inline fields"> <label for="radio-box"> Select your option: </label> <div class="field"> <div class="ui radio checkbox"> <input type="radio" name="radio-box" checked="" tabindex="0" class="hidden"> <label>Radio 1</label> </div> </div> <div class="field"> <div class="ui radio checkbox"> <input type="radio" name="radio-box" tabindex="0" class="hidden"> <label>Radio 2</label> </div> </div> <div class="field"> <div class="ui radio checkbox"> <input type="radio" name="radio-box" tabindex="0" class="hidden"> <label>Radio 3</label> </div> </div> </div> </div> <script> $('.ui.radio.checkbox').checkbox(); </script> </body> </html> Output: Semantic-UI Form Radio Checkbox Content Example 2: The following code demonstrates the Semantic-UI Form Radio Checkbox Content in the vertical direction. HTML <!DOCTYPE html> <html> <head> <title>Semantic-UI Form Radio Checkbox Content</title> <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> <h2 style="color: green"> GeeksforGeeks </h2> <h3> Semantic-UI Form Radio Checkbox Content </h3> <div class="ui form"> <div class="grouped fields"> <label for="radio-box"> Select your option: </label> <div class="field"> <div class="ui radio checkbox"> <input type="radio" name="radio-box" checked="" tabindex="0" class="hidden"> <label> Radio 1 </label> </div> </div> <div class="field"> <div class="ui radio checkbox"> <input type="radio" name="radio-box" tabindex="0" class="hidden"> <label> Radio 2 </label> </div> </div> <div class="field"> <div class="ui radio checkbox"> <input type="radio" name="radio-box" tabindex="0" class="hidden"> <label> Radio 3 </label> </div> </div> </div> </div> <script> $('.ui.radio.checkbox').checkbox(); </script> </body> </html> Output: Semantic-UI Form Radio Checkbox Content Reference: https://semantic-ui.com/collections/form.html#radio-checkbox Comment More infoAdvertise with us Next Article Semantic-UI Form Radio 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 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 2 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 Checkbox Radio Type 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 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 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 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 Checkbox Indeterminate 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 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 the Checkbo 3 min read Onsen UI Checkbox 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. Checkboxes are used for instances where a user may wish to select multiple options, such as in the instance of a âcheck a 2 min read ReactJS Onsen UI Checkbox Component ReactJS Onsen-UI is a popular front-end library with a set of React components that are designed to developing HTML5 hybrid and mobile web apps in a beautiful and efficient way. Checkbox component allows the user to make a binary choice from the given options. We can use the following approach in Re 2 min read Like