Advertisement
kangjaz

view_export

Nov 2nd, 2018
1,891
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.90 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <meta charset="utf-8" />
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5.     <title>Export Excel</title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <style>
  8.         body {
  9.             padding: 20px 50px;
  10.             font-family: sans-serif;
  11.         }
  12.         h4 {
  13.             font-size: 20px;
  14.             font-weight: 500;
  15.         }
  16.         a {
  17.             background: #06c;
  18.             border-color: #06c;
  19.             outline: none;
  20.             color: #fff;
  21.             font-size: 15px;
  22.             cursor: pointer;
  23.             border-radius: 3px;
  24.             padding: 10px 15px;
  25.             text-decoration: none;
  26.         }
  27.     </style>
  28. </head>
  29. <body>
  30.     <h4>Silahkan Klik tombol di bawah ini untuk mengexport data</h4>
  31.     <a href="<?= base_url('index.php/export/export_data'); ?>" target="_blank">Export Data</a>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement