#12 #13 #15 help pls with 2nd project

hello, i need some help with number #12 #13 and #15 in the 2nd project.

number 12 and 13 i need help with the correct coding
number 15 i need help with increasing the size of the text box

there is the link to my work if someone could take a look at it and help out.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0

Challenge: Build a Survey Form

Link to the challenge:

Get rid of the <style> tags in the CSS editor. The height/width values should not be in double quotes.

1 Like

you are supposed to use the codepen link provided; here is the link: A Pen by Cayden Lin (codepen.io).
I suggest you to copy all your code to this link.

For #12 you create a dropdown with the following syntax:

 <select 
           id="dropdown" 
           name=""
           required>
     <option value=""></option>
     <option value=""></option>
     <option value=""></option>
     <option value=""></option>
     </select>

for #13 you create radio buttons with the following syntax:

<label for=""></label>
<input type="radio" id="" name="" value="" >

for #15 you create text areas like this:

<textarea 
id=""
class=""
name=""
placeholder="" >
</textarea>

you should be able to change the size of it using normal CSS with width, and height properties.

or do you mean by the PROCESS of changing the size. In which you can use the resize property (I like to use the vertical value)

resize: vertical;

Hope you find my suggestions/comments useful!! (<_>)

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.