Skip to content

Instantly share code, notes, and snippets.

@GeekyGeeky
Last active January 13, 2025 02:07
Show Gist options
  • Save GeekyGeeky/580b35e0a213d2aab82996ab1f15bf22 to your computer and use it in GitHub Desktop.
Save GeekyGeeky/580b35e0a213d2aab82996ab1f15bf22 to your computer and use it in GitHub Desktop.
Interactive Drag and Drop HTML Design
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-   <title>Document</title>
+   <title>Interactive File Upload Demo</title>
  </head>
  <body>
+   <div class="container">
+     <h1 class="text-large">Interactive File Upload</h1>
+
+     <div class="file-upload-container">
+       <div class="drag-area" id="drag-area">Drag and Drop Files Here</div>
+       <ul id="file-list" class="file-list"></ul>
+     </div>
+      
+   </div>
  </body>
</html>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment