I need help with styling my HTML form. I want the first question label and corresponding radio buttons to appear on one line, and the second question label and corresponding check boxes to also be on one line. Below is my code snippet. Can you advise me on what changes I need to make and how to style it using CSS?
.jumbotron{
position:relative;
background : #000 url(background.jpg) center center;
background-size: cover;
overflow:hidden;
margin-bottom:0px;
}
.box{
position:relative;
background-color:#5DBCD2;
width:90%;
margin-top:0.5%;
height:98.5%;
margin-bottom:1%;
margin-left:5%;
margin-right:5%;
}
.navbar{
min-height: 60px;
margin-bottom:0px;
}
.navbar-inverse{
background-color:#00FF00;
border-color:#00FF00;
font-size:150%;
font-weight:bold;
}
.navbar-inverse .navbar-nav>li>a {
color:#000000;
}
.navbar-inverse .navbar-brand {
color: #ff0000;
font-weight: bold;
font-size:150%;
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover{
background-color:#800080;
}
#index .navbar-inverse>.container-fluid>.navbar-collapse>.navbar-nav>.index, #experience .navbar-inverse>.container-fluid>.navbar-collapse>.navbar-nav>.experience, #video .navbar-inverse>.container-fluid>...
</form>
</div>
</div>
</div>