html - Paragraph is not showing -




i following jon duckett's beginner's book. reason, paragraph has "upload song in mp3 format" not showing when website loaded. other paragraphs work intended. please help.

blockquote  <!doctype html> <html> <body>     <form action="http://www.example.com/login.php">         <p>             username:<input type="text" name="username" maxlenth="30" />         </p>         <p>             password:<input type="password" name="password" maxlength="30" />         </p>         <p>             did think of gig?<textarea mame="comments" cols="20" rows="4">enter comments...</textarea>         </p>         <p>             please select favorite genre:             <br />             <input type="checkbox" name="genre" value="rock" checked="checked" />rock             <input type="checkbox" name="genre" value="pop" />pop             <input type="checkbox" name="genre" value="jazz" />jazz             <br />         </p>         <p>             <select name="device">                 <option value="ipod">ipod</option>                 <option value="radio">radio</option>                 <option value="computer">computer</option>         </p>          </form>          <form action="http://www.example.com/upload.php" method="action">             <br />             <p>upload song in mp3 format</p>             <input type="file" name="user-song" /><br />             <input type="submit" value="upload" />         </form>     </body> </html> 

you have missed closing tag device <select>

 <select name="device">         <option value="ipod">ipod</option>         <option value="radio">radio</option>         <option value="computer">computer</option> </select> <!-- missed 1 --> 




wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -