gg
Html
code posted
created at 04 May 02:20, updated at 04 May 03:14
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<!DOCTYPE html> <html> <head> <meta content="initial-scale=1.0, width=device-width" name="viewport"> <link href="../css/reset.css" rel="stylesheet" type="text/css"> <link href="../css/default.css" rel="stylesheet" type="text/css"> <link href="../css/admin.css" rel="stylesheet" type="text/css"> </head> <body> <div id="page"> <div class="content"> <p class="error-message">Sample error message.</p> <table> <thead> <tr> <th>header 1</th> <th>header 2</th> <th class="actions">Actions</th> </tr> </thead> <tbody> <tr> <td>row 1, data 1</td> <td>row 1, data 2</td> <td class="actions"> <a href="#" data-action="delete-user" data-i18n="delete">Delete</a> </td> </tr><!-- necessary to avoid undesired whitespace, see also http://stackoverflow.com/q/12168194/974795 --><tr> <td>row 2, data 1</td> <td>row 2, data 2</td> <td class="actions"> <a href="#" data-action="delete-user" data-i18n="delete">Delete</a> </td> </tr> </tbody> </table> <p> <a class="button" href="" data-i18n="next">next</a> </p> </div> </div> </body> </html> |
1.5 KB in 4 ms with coderay