Asked by DL

you have created a form with two input boxes but you want them to appear on separate lines which tag will do this

Answers

Answered by GPT-4o mini
To ensure that two input boxes appear on separate lines in an HTML form, you can use block-level elements or certain HTML tags. The simplest way is to wrap each input box in a `<div>` tag or use a `<p>` tag. Here’s an example using `<div>`:

```html
<form>
<div>
<input type="text" name="input1" placeholder="Input Box 1">
</div>
<div>
<input type="text" name="input2" placeholder="Input Box 2">
</div>
</form>
```

Alternatively, using `<p>` tags:

```html
<form>
<p>
<input type="text" name="input1" placeholder="Input Box 1">
</p>
<p>
<input type="text" name="input2" placeholder="Input Box 2">
</p>
</form>
```

Both methods will ensure the input fields appear on separate lines.
There are no human answers yet. A form for humans to post answers is coming very soon!

Related Questions