Advertisement
plytalent

3/3 html table public last

Aug 15th, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html><!--start of the html web page-->
  2. <title>character info</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.     color: white ;
  15. }
  16. a:link {
  17.     color: green;
  18.     background-color: transparent;
  19.     text-decoration: none;
  20. }
  21.  
  22. a:visited {
  23.     color: gold;
  24.     background-color: transparent;
  25.     text-decoration: none;
  26. }
  27.  
  28. a:hover {
  29.     color: red;
  30.     background-color: transparent;
  31.     text-decoration: underline;
  32. }
  33.  
  34. a:active {
  35.     color: yellow;
  36.     background-color: transparent;
  37.     text-decoration: underline;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <table>
  43. <caption><font color ="yellow">character info .......stay night</font></caption>
  44. <tr>
  45. <th>character name</th>
  46. <th>about character </th>
  47. <th>character ............</th>
  48. </tr>
  49. <tr>
  50. <td><img src="character image here"></td>
  51. <th>nickname:your character nickname<br>name:your character name<br>age: your character age<br>Gender:your character gender<br></th>
  52. <th>......</th>
  53. </tr>
  54. </table>
  55. <font color="red">credits below there</font><br>
  56. <a href="info url">name for your credits</a>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement