Advertisement
plytalent

kuy ra

Aug 8th, 2018
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <html><!--start of the html web page-->
  2. <title>ตารางข้อมูลของนักเรียน</title> <!-- change title bar -->
  3. <head>
  4. <!--background-->
  5. <!--change url-->
  6. <style>
  7. body {
  8.     background-image: url("https://images.alphacoders.com/676/thumb-1920-676565.png");
  9.      background-repeat: no-repeat;
  10.      background-size: cover;
  11. }
  12. table, th, td {
  13.     border: 1px solid black;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <table>
  19. <caption>ข้อมูลของนักเรียน</caption>
  20. <tr>
  21. <th>ชื่อ-นามสกุล </th>
  22. <th>เลขประจำตัว </th>
  23. <th>ชื่อเล่น </th>
  24. </tr>
  25. <tr>
  26. <td>ด.ช.ธาดา ปานสิงห์</td>
  27. <th>27674</th>
  28. <th>ดีเจ</th>
  29. </tr>
  30. <tr>
  31. <td>ด.ช.ณัฐพงษ์ มณีนารถ</td>
  32. <th>27777</th>
  33. <th>มอส</th>
  34. </tr>
  35. <tr>
  36. <td>ด.ช.ศุภกานต์ ปลูกจิตรสม</td>
  37. <th>27600</th>
  38. <th>โฟล์ค</th>
  39. </tr>
  40. </table>
  41.  
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement