Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>For Lab final</title>
- <style>
- table, th, td {
- border: 1px solid black;
- border-collapse: collapse;
- }
- .button {
- border: none;
- color: white;
- padding: 15px 32px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 16px;
- margin: 4px 2px;
- cursor: pointer;
- }
- .button1 {background-color: #4CAF50;} /* Green */
- </style>
- </head>
- <body>
- <h1>Lab Final</h1>
- <table style="width:100%">
- <tr>
- <th>Name</th>
- <th>Student Id</th>
- <th>Course Name</th>
- <th>Course Code</th>
- </tr>
- <tr>
- <td>Zobayer Mahmud</td>
- <td>172-15-10067</td>
- <td>Web engineering Lab</td>
- <td>CSE418</td>
- </tr>
- </table>
- <button class="button button1" type = "button" onclick =
- "alert('Button Clicked')">
- Click Here
- </button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment