Prev Demo
Contextual Classes
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" /> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> </head> <body> <table> <thead> <tr class="bg-primary"> <th>S/no.</th> <th>Name</th> <th>Details</th> <th>Contact</th> </tr> </thead> <tbody> <tr class="bg-info"> <td>1</td> <td>DotNetFunda</td> <td>Fundamentals of .Net</td> <td>support@dotnetfunda.com</td> </tr> <tr class="bg-danger"> <td>2</td> <td>ItFunda</td> <td>Training of Microsoft Technologies</td> <td>support@itfunda.com</td> </tr> </tbody> </table> </body> </html>
Note: We DO NOT save your trial code in our database.
Output