> For the complete documentation index, see [llms.txt](https://docs.atomui.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.atomui.com/form-elements/radio-box.md).

# Radio Box

adio box can be used for making clear and distinctive labels with more information. radio box does not require additional css and JavaScript apart from atmos defaults.

<div align="left"><img src="/files/-LUL2ubXS_VTj6o1HuLu" alt=""></div>

```markup
<div class="option-box">
    <input id="radio-new1" name="bigradios" type="radio">
    <label for="radio-new1">
         <span class="radio-content">
                  <span class="h6 d-block">Starter Plan
                      <span class="badge-soft-primary badge">$12 MONTH</span>
                  </span>
                   <span class="text-muted d-block m-b-10">
                                                Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium blanditiis ducimus ipsa provident quae quaerat similique? Consequatur consequuntur cum, inventore nihil porro quis. Ad assumenda eligendi illum impedit quis totam.
                   </span>
         </span>
    </label>
</div>
```

### Radio box Columns

Radio box Column is similar to radio-box with a slight variation<br>

![](/files/-LUL3KxVuHbBdNn8WqYL)

```markup
<div class="option-box-column">
				<input id="radio-column-1" name="column-radio" type="radio">
				<label for="radio-column-1">
					<span class="radio-content">
						<span class="p-all-15 d-block">
							<span class="h3 d-block">$15</span>
							<span class="list-group">
								<span class="list-group-item">Cras justoodio</span>
								<span class="list-group-item">Dapibus ac facilisis in</span>
								<span class="list-group-item">Morbi leo risus</span>
								<span class="list-group-item">Vestibulum ateros</span>
							</span>
						</span>
						<span class="radio-highlight">Basic Plan</span>
					</span>
				</label>
</div>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.atomui.com/form-elements/radio-box.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
