Saturday, August 28, 2021

Html Forms with File upload

 Html Forms with File upload Code

<!DOCTYPE html>>

<html>


<head>

    <meta charset="utf-8">

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <link rel="stylesheet" type="text/css" href="nav.css">

    <script src="https://use.fontawesome.com/d07a8c2f55.js"></script>

    <link rel="preconnect" href="https://fonts.gstatic.com">

    <title>Html Froms</title>

</head>


<body>

<h1>html forms with fileupload</h1>

<form>

    <label class="my file">Select a File</label>

    <input type="file"id="my file"name="my file"><br><br>

    <input type="submit">

</form>

</body>

</html>

No comments:

Post a Comment

JavaScript Animated

  JavaScript Animated <!DOCTYPE html> <html> <style> #myContainer {   width: 400px;   height: 400px;   position: relative;...