Install and set up FilePond via CDN
masterFor simple HTML projects, you can include FilePond via unpkg. First, include the FilePond CSS stylesheet in your <head>. Then, add a file <input> element to your body. Finally, load the FilePond library and call FilePond.parse(document.body) to transform all matching file input elements into FilePond instances.
<!DOCTYPE html>
<html lang="en">
<head>
<title>FilePond from CDN</title>
<!-- Filepond stylesheet -->
<link href="https://unpkg.com/filepond/dist/filepond.css" rel="stylesheet" />
</head>
<body>
<!-- We'll transform this input into a pond -->
<input type="file" class="filepond" />
<!-- Load FilePond library -->
<script src="https://unpkg.com/filepond/dist/filepond.js"></script>
<!-- Turn all file input elements into ponds -->
<script>
FilePond.parse(document.body);
</script>
</body>
</html>