Hello,
I am trying to display a label and a form on the same line just like this
<body>
<div class="movie-container">
<label>
Pick a movie:
</label>
<select id="movie">
<option value="10">Avengers:Endgame(10$)</option>
<option value="12">Joker(12$)</option>
<option value="8">Toy Story 4 (8$)</option>
<option value="9">The Lion King (9$)</option>
</select>
</div>
</body>
body{
background-color:#242333;
color:#fff;
display: flex;
flex-direction: column;
align-items:center;
justify-content:center;
min-height:100vh;
font-family:Lato,sans-serif;
margin:0;
}
Thanks for helping me out!
Here is my site Read-Only: [LINK](https://preview.webflow.com/preview/movie-booking-81ca0e?utm_medium=preview_link&utm_source=designer&utm_content=movie-booking-81ca0e&preview=39ee3e0843520a71390edc3bcd78042e&workflow=preview)