I need help styling the aspx file.
The Label and TextBox elements are not aligned properly.
I want the Label and TextBox to be positioned side by side with appropriate spacing.
<div class="col-md-12">
<p>
<asp:Label ID="Label1" runat="server" Text="Your Name : "></asp:Label>
<asp:TextBox ID="name" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="Label2" runat="server" Text="Your Email ID : "></asp:Label>
<asp:TextBox ID="email" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="Label3" runat="server" Text="Your Contact Number: "></asp:Label>
<asp:TextBox ID="mob" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="Label4" runat="server" Text="Select your subject : "></asp:Label>
<asp:TextBox ID="subject" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="label5" runat="server" Text="Your Message : "></asp:Label>
<asp:TextBox ID="message" runat="server" TextMode="MultiLine"></asp:TextBox>
</p>
<p>
<asp:Button ID="submitButton" runat="server" Text="Submit" />
<asp:Button ID="resetButton" runat="server" Text="Reset" />
</p>
</div>