<head>
<link rel="stylesheet" href="imagedrop.css" />
<link rel="stylesheet" href="style.css" />
</head>
<div class="your_div_classname"></div>
<body>
<!-- other stuff -->
<script src="./path/imagedrop.js"></script>
</body>
<body>
<!-- other stuff -->
<script src="./path/imagedrop.js"></script>
<script>
new ImageDrop("your_div_classname").init()
</script>
</body>
<script>
let options = {
inputName: 'images', // Necessary
textContent: 'Drag or Drop Images Here',
borderColor: 'grey',
borderWidth: '1px',
borderRadius: '12px',
fontSize: '30px',
fontFamily: 'san-serif',
}
new ImageDrop("your_div_classname", options).init()
</script>