shohan11421

4no

Apr 12th, 2021
1,222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.88 KB | None | 0 0
  1.  <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>For Lab final</title>
  5. <style>
  6.  
  7. table, th, td {
  8.   border: 1px solid black;
  9.   border-collapse: collapse;
  10. }
  11.  
  12. .button {
  13.   border: none;
  14.   color: white;
  15.   padding: 15px 32px;
  16.   text-align: center;
  17.   text-decoration: none;
  18.   display: inline-block;
  19.   font-size: 16px;
  20.   margin: 4px 2px;
  21.   cursor: pointer;
  22. }
  23.  
  24. .button1 {background-color: #4CAF50;} /* Green */
  25. </style>
  26. </head>
  27. <body>
  28.  
  29. <h1>Lab Final</h1>
  30.  
  31.  <table style="width:100%">
  32.   <tr>
  33.     <th>Name</th>
  34.     <th>Student Id</th>
  35.     <th>Course Name</th>
  36.     <th>Course Code</th>
  37.   </tr>
  38.   <tr>
  39.     <td>Zobayer Mahmud</td>
  40.     <td>172-15-10067</td>
  41.     <td>Web engineering Lab</td>
  42.     <td>CSE418</td>
  43.   </tr>
  44.  
  45. </table>
  46. <button class="button button1" type = "button" onclick =
  47.            "alert('Button Clicked')">
  48.             Click Here
  49.         </button>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment