More Form Element in HTML

 <!DOCTYPE html>

<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>More Form Element</title>
    </head>
    <body>
        <form>
            <p>comment below</p>
            <textarea name="" id="" cols="30" rows="10" placeholder="type here..."></textarea><br><br>
            Pick color : <input type="color" name="" id=""><br><br>
            Date : <input type="date" name="" id=""><br><br>
            <input type="file" name="" id="">
        </form>
    </body>
</html>




Comments