Hey rockstars!
I have question about where to add the “style” tag on something, below is apeice of HTML code, that is a form, I would like to style this form - I come across things like this alot.
As a general rule of thumb with forms, where does this tag go, I know this “inline CSS”
Appreciate the help!
<form action="https://email.problemfreewp.com/sendy//subscribe" method="POST" accept-charset="utf-8">
<label for="name">Name</label><br/>
<input type="text" name="name" id="name"/>
<br/>
<label for="email">Email</label><br/>
<input type="email" name="email" id="email"/>
<br/>
<label for="MobileNumber">Mobile Number</label><br/>
<input type="text" name="MobileNumber" id="MobileNumber"/><br/><div style="display:none;">
<label for="hp">HP</label><br/>
<input type="text" name="hp" id="hp"/>
</div>
<input type="hidden" name="list" value="XuMhOL892B892zem3dZenGk0bg"/>
<input type="hidden" name="subform" value="yes"/>
<input type="submit" name="submit" id="submit"/>
</form>```