Advertisement
plytalent

last work2

Aug 22nd, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.44 KB | None | 0 0
  1. <!doctype html>
  2. <html><!--start of the html web page-->
  3. <title>character info</title> <!-- change title bar -->
  4. <head>
  5. <!--background-->
  6. <!--change url-->
  7. <style>
  8. body {
  9.     background-image: url("https://images.alphacoders.com/676/thumb-1920-676565.png");
  10.      background-repeat: no-repeat;
  11.      background-size: cover;
  12. }
  13. table, th, td {
  14.     border: 1px solid black;
  15.     color: white ;
  16. }
  17. a:link {
  18.     color: green;
  19.     background-color: transparent;
  20.     text-decoration: none;
  21. }
  22.  
  23. a:visited {
  24.     color: gold;
  25.     background-color: transparent;
  26.     text-decoration: none;
  27. }
  28.  
  29. a:hover {
  30.     color: red;
  31.     background-color: transparent;
  32.     text-decoration: underline;
  33. }
  34.  
  35. a:active {
  36.     color: yellow;
  37.     background-color: transparent;
  38.     text-decoration: underline;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43.  
  44. <table>
  45. <caption><font color ="yellow">character image anime name fate/stay night</font></caption>
  46. <tr>
  47. </tr>
  48. <tr>
  49. <td><img src = "character1.png"height="125" width="200"></td>
  50. <td><img src = "character2.png"height="139" width="257"></td>
  51. <td><img src = "character3.png"height="150" width="164"></td>
  52. </tr>
  53. <tr>
  54. <td><img src = "character4.png"height="125" width="200"></td>
  55. <td><img src = "character5.png"height="139" width="257"></td>
  56. <td><img src = "character6.png"height="172" width="125"></td>
  57. </tr>
  58. </table>
  59. <font color="red">credits below there</font><br>
  60. <a href="index.html">back to homepage</a>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement