-1

I have a couple of images below. The top is what I am supposed to create, the bottom is what I currently have. How do I get my address line to look like that? Here is my current code for it:

         <label for="addBox">Address *</label>
         <input type="text" id="addBox" name="address" required>
         <br>

enter image description here

enter image description here

DatSoup
  • 35
  • 3

1 Answers1

1

Use the <textarea> element instead of an <input> element

<label for="addBox">Address *</label>
<textarea id="addBox" name="address" required></textarea>
<br>
Wongjn
  • 8,544
  • 2
  • 8
  • 24