Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html><!--start of the html web page-->
- <title>ตารางข้อมูลของนักเรียน</title> <!-- change title bar -->
- <head>
- <!--background-->
- <!--change url-->
- <style>
- body {
- background-image: url("https://images.alphacoders.com/676/thumb-1920-676565.png");
- background-repeat: no-repeat;
- background-size: cover;
- }
- table, th, td {
- border: 1px solid black;
- }
- </style>
- </head>
- <body>
- <table>
- <caption>ข้อมูลของนักเรียน</caption>
- <tr>
- <th>ชื่อ-นามสกุล </th>
- <th>เลขประจำตัว </th>
- <th>ชื่อเล่น </th>
- </tr>
- <tr>
- <td></td>
- <th></th>
- <th></th>
- </tr>
- <tr>
- <td></td>
- <th></th>
- <th></th>
- </tr>
- <tr>
- <td></td>
- <th></th>
- <th></th>
- </tr>
- </table>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement