0
Proplem in Html Form - Solved
after i complete a reg formand start to put end code " sumbit " its not preview my button it show me a box !! so why that? https://code.sololearn.com/W3V4Gfb16DGC/?ref=app Answer : My Mistake is that i put sumbit and it was rong so you should put " submit "
4 odpowiedzi
+ 6
<!DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
    </head>
    <body>
    
     <label> username </label>
     <input type="name">
     <br>
       <label>Password</label>
       <input type="Password">
       
        <br>
        <!-- no need to insert label with button
and problems in your spelling like, submit not sumbit, label not lable other wise well-->
        <input type="Submit" name="submit">
    </body>
</html>
+ 4
try typing submit instead of sumbit. i made that mistake before too, its always really annoying for me to make typemistakes
good luck learning futher
+ 1
https://code.sololearn.com/WU0Y1Z7M0JOk/?ref=app
Check it. It is help for you



