Размещение файла на странице сайта.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>File inputs</title> <style> body { font: 100% arial, helvetica, sans-serif; } fieldset { padding: 0 1em 1em 1em; } legend { padding: 1em; } </style> </head> <body> <form action="someplace.php" method="post" enctype="multipart/form-data"> <fieldset> <legend>Upload file</legend> <label for="uploadfile">File name: </label> <input type="file" name="uploadfile" id="uploadfile"> </fieldset> </form> </body> </html>
Страницы в тему:
- Текстовые поля
- Формы (Урок HTML для начинающих)