Advertisement
plytalent

html 3/3

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