sudhakarinfotech
(current)
Run Code
Live Code Editor- Bulma Table
Source Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bulma CSS Table</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.0/css/bulma.min.css"> </head> <body> <section class="section"> <div class="container"> <h1 class="title">Bulma CSS Table</h1> <table class="table"> <thead> <tr> <th>Name</th> <th>Age</th> </tr> </thead> <tbody> <tr> <td>John Smith</td> <td>30</td> </tr> <tr> <td>John Doe</td> <td>35</td> </tr> </tbody> </table> </div> </section> </body> </html>
Source Code Output :
Running