+ 2
Please who can give me corrections and also how to use the date input etc
my first work on html here https://code.sololearn.com/WJ78qqjX7hr8/?ref=app
7 Answers
+ 2
also method = "POST" (value must be inside " " ) and <a> must have </a>
+ 2
what corrections do you need? css styling?
+ 2
for now, I'm still learning CSS but using that code, the keyboard ought to respond to each code with the appropriate input buttons, when You click on the phone number...it ought to show numbers input instead of words...
+ 2
for number keyboard you need to use input type="number" not "num" and "email" not "e-mail"
+ 2
meta tag must be inside head tag, not in body
+ 2
add some css like :
label, input{
display:inline-block ;
width: 40%;
}
input[type=button]{
width:auto ;
}
input{
border-radius: 4px;
padding: 10px 20px;
border:1px solid #eee;
}
+ 2
I really appreciate your response