0% found this document useful (0 votes)
3 views1 page

Doctype HTML MR

This document is an HTML file for a file upload interface. It includes a form that allows users to upload text, image, and video files with specified file type restrictions. The form submits the data to 'upload.php' for processing.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Doctype HTML MR

This document is an HTML file for a file upload interface. It includes a form that allows users to upload text, image, and video files with specified file type restrictions. The form submits the data to 'upload.php' for processing.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Upload</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Upload Your Files</h1>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label for="text-file">Text File:</label>
<input type="file" id="text-file" name="text-file"
accept=".txt, .pdf, .doc, .docx"><br><br>

<label for="image-file">Image File:</label>


<input type="file" id="image-file" name="image-file"
accept="image/*"><br><br>

<label for="video-file">Video File:</label>


<input type="file" id="video-file" name="video-file"
accept="video/*"><br><br>

<button type="submit">Upload Files</button>


</form>
</body>
</html>

You might also like