Advertisement
Baru_Berbagi

index.html

Oct 25th, 2022
881
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Save Text As File</title>
  6.     <link rel="stylesheet" href="style.css">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.     <script src="script.js" defer></script>
  9.  
  10. </head>
  11. <body>
  12.     <div class="wrapper">
  13.         <textarea required placeholder="Enter something to save"></textarea>
  14.         <div class="file-options">
  15.             <div class="optins file-name">
  16.               <label>File Name</label><div></div>
  17.                 <input type="text" placeholder="Enter file name">
  18.             </div>
  19.             <div class="options save-as">
  20.                 <label>Save As</label>
  21.                 <div class="select-menu">
  22.                     <select>
  23.                         <option value="text/plain">Text File (.txt)</option>
  24.                         <option value="text/javascript">JS File (.js)</option>
  25.                         <option value="text/html">HTML File (.html)</option>
  26.                         <option value="image/svg+xml">SVG File (.svg)</option>
  27.                         <option value="application/msword">Doc File (.doc)</option>
  28.                         <option value="application/vnd.ms-powerpoint">PPT File (.doc)</option>
  29.                     </select>
  30.                 </div>
  31.             </div>
  32.         </div>
  33.         <button class="save-btn">Save As Text File</button>
  34.     </div>
  35. </body>
  36. </html>
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement