I need to put text, an input-text, another text and another input text in the same row (row) in html. I can not find a way.
Can anyone help me?
I need to put text, an input-text, another text and another input text in the same row (row) in html. I can not find a way.
Can anyone help me?
You can put a label in front of your input, thus:
<label>Nome: </label><input type="text" name="nome">
<label>Email: </label><input type="text" name="email">
If you want to put one input below another, you put a br to break the line.
with a simple CSS
#inline {
display: inline;
}
<div id="inline">
um texto <input type="text" placeholder="um input"/>
outro texto <input type="text" placeholder="outro input"/>
</div>