This is a nice-looking file upload form that can be easily added to your website. Just copy the code, create a new page, and add it in.
You can have it as a standalone pop-up window, embed it in your page, or call it via a QueryString value.
Either way you do it, this is a great addition to any website.
This example does not upload a file. When you select a file, its name will appear in the [No file chosen] area.
Live Template Example - File Upload Form Template
[HTML - FileUpload.html]
CFFCS | CarrzSynEdit: | HTML (Hyper Text Markup Language)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>File Upload Form</title>
<linkhref="FileUpload.css" rel="stylesheet" />
</head>
<body>
<divclass="form-card">
<formid="fontUploadForm">
<!-- Artist ID Hidden Field -->
<inputtype="hidden"name="ArticleID" value="101" />
<divclass="input-group">
<labelclass="field-label">Filename</label>
<spanclass="field-hint">File Name</span>
<inputclass="styled-input"type="text"name="Fontname"placeholder="Give file a name" />
</div>
<divclass="input-group">
<labelclass="field-label">File Size</label>
<spanclass="field-hint">Size of File (This can be done on the Backend as well)</span>
<inputclass="styled-input"type="text"name="Fontsize"placeholder="e.g. 200mb will be 200000kb" />
</div>
<divclass="input-group">
<labelclass="field-label">File Credit</label>
<spanclass="field-hint">Give Credit to Developer (or list as Unknown)</span>
<inputclass="styled-input"type="text"name="FrontCredit"placeholder="Author name..." />
</div>
<divclass="input-group">
<labelclass="field-label">Upload Font File</label>
<inputid="filMyFile"type="file"class="file-input-custom" />
</div>
<buttontype="submit"class="submit-btn">Update Font Details</button>
</form>
</div>
</body>
</html>