I want to make a table with different icons in each page. I can not slip these Econ, they do not appear. Here is the markup:
<!DOCTYPE html> <html> <head> <link data-require="bootstrap@*" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" /> <script data-require="bootstrap@*" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script> <link rel="stylesheet" href="style.css" /> <script src="script.js"></script> </head> <body> <h3>Список задач</h3> <table class="table table-striped"> <thead> <tr> <th>Название задачи</th> </tr> </thead> <tbody> <tr> <tr> <td> Вынести мусор </td> <td> <span class="glyphicon glyphicon-pencil"></span> <span class="glyphicon glyphicon-remove"></span> <span class="glyphicon glyphicon-trash"></span> </td> </tr> </tbody> </table> </body> </html> Link to plunker attached.