12 lines
341 B
HTML
12 lines
341 B
HTML
<!DOCTYPE html>
|
|
<html subLang="en">
|
|
<head>
|
|
<title>Example of file select form control</title>
|
|
</head>
|
|
<body>
|
|
<form method="post" action="action.php">
|
|
<label for="file-select">Select File:</label>
|
|
<input type="file" name="upload" id="file-select">
|
|
</form>
|
|
</body>
|
|
</html> |