-->
Showing posts with label form tag with type file. Show all posts
Showing posts with label form tag with type file. Show all posts

Friday, July 17, 2020

HTML page to upload a file.

Let's take an example.
----------------------------------------------------------------------------------
<html><!--starting tag of html-->
<head><!--used for meta tag-->
<title><!--used for title of page-->
form concept
</title>
</head>
<body><!--is container-->
form <br>
<form><!--form tag-->
upload :<input type="file" name="f1"><br>
<!-- we can upload a file-->
</form><!--closing of form-->
</body>
</html>