HTML input Tag

PHOTO EMBED

Tue Feb 08 2022 10:42:06 GMT+0000 (Coordinated Universal Time)

Saved by @Arjun007 #html #css #javasc #java #php #sass

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Example of HTML input tag</title>
</head>
<body>
    <form action="yourfile" method="post">
        <label for="first-name">First name:</label>
        <input type="text" name="first-name" id="first-name">
        <input type="submit" value="Submit">
        <input type="reset" name="Reset">
    </form>
</body>
</html> 
content_copyCOPY

https://elementtutorials.com/ref/input.html