I want a label and input type with radio in one line
For example
◉ CSS ◉ HTML ◉ Javascript
like this but i can't . please solve this.
I want a label and input type with radio in one line
For example
◉ CSS ◉ HTML ◉ Javascript
like this but i can't . please solve this.
Hello and welcome to StackOverflow,
It is pretty easy and straight forward. By default, HTML will be display them in one line without extra effort, if you don't use anything like a line break <br/> or change the default display using CSS.
For example:
<input type="radio" id="html" name="language" /> <label for="html">HTML</label>
<input type="radio" id="css" name="language" /> <label for="css">CSS</label>
<input type="radio" id="javascript" name="language" /> <label for="javascript">JavaScript</label>