Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

tablee

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap 101 Template</title>

    <!-- Bootstrap -->
    <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
 </head>
  <body>
    <h1>Request blood donation Table</h1>
    

   <table class="table table-dark">
  <thead>
    <tr>
        <th scope="col">#</th>
      <th scope="col">Name</th>
      <th scope="col">DOB</th>
      <th scope="col">Last Donation</th>
      <th scope="col">Reward</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Shubham</td>
      <td>05/10/1997</td>
      <td>04/06/2019</td>
      <td>20</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Nitin</td>
      <td>04/11/1996</td>
       <td>04/03/2019</td>
      <td>40</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>ambar</td>
      <td>05/07/1997</td>
      <td>09/05/2019</td>
      <td>60</td>
    </tr>
    <tr>
      <th scope="row">4</th>
      <td>Akshay</td>
      <td>08/10/1997</td>
      <td>08/05/2019</td>
      <td>80</td>
    </tr>
    </tr>
  </tbody>
</table>
    <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
  </body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.