Using W3.CSS, how do we display labels inline with inputs?
<link href="http://www.w3schools.com/lib/w3.css" rel="stylesheet" />
<form class="w3-container">
<p>
<label>First Name</label>
<input class="w3-input w3-border" type="text">
</p>
<p>
<label>Last Name</label>
<input class="w3-input w3-border" type="text">
</p>
<p>
<label>Email</label>
<input class="w3-input w3-border" type="text">
</p>
</form>