Prev Demo
Table Properties
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> <div class="container"> <h2>Table-properties</h2> <p>Tables</p> <table class=" table table-hover"> <thead> <tr> <th>S.NO</th> <th>Name</th> <th>Details</th> <th>contact</th> </tr> </thead> <tbody> <tr class="table-hover"> <td>1</td> <td>dotnetfunda</td> <td>fundamentals of .NET</td> <td>support@dotnetfunda.com</td> </tr> <tr class="table-bordered"> <td>2</td> <td>techfunda</td> <td>online tutorials</td> <td>techfunda@gmail.com</td> </tr> <tr class="table-striped"> <td>3</td> <td>techfunda</td> <td>online tutorials</td> <td>techfunda@gmail.com</td> </tr> <tr class="success"> <td>4</td> <td>techfunda</td> <td>online tutorials</td> <td>techfunda@gmail.com</td> </tr> </tbody> </table> </div> </body> </html>
Note: We DO NOT save your trial code in our database.
Output