Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>John Timmermann</title>
  5. <meta charset="utf-8">
  6. <style>
  7. html { height: 100% }
  8.  
  9. footer, p {
  10. padding: 10px;
  11. }
  12.  
  13. body {
  14. background-image:
  15. linear-gradient(to bottom, #c94b4b, #141414);
  16. background-repeat: no-repeat;
  17. text-shadow: 3px 3px 3px #000000;
  18. height: 100%;
  19.  
  20. }
  21. #container {
  22. background-color: rgba(35, 35, 35, 0.52);
  23. color:#FFFFFF;
  24. margin-left: auto;
  25. margin-right: auto;
  26. max-width: 1000px;
  27. width: 100%;
  28. border: 1px solid #000000
  29. }
  30.  
  31. img {
  32. color: #FFFFFF;
  33. margin: 0 auto 0 auto;
  34. max-width: 1000px;
  35. width: 200px;
  36. height: 280px;
  37. padding: 5px;
  38. border: 1px solid #000000;
  39. }
  40.  
  41. figcaption { text-align: center; }
  42.  
  43. h1 { background-color: #141414;
  44. color:#c94b4b;
  45. text-align: center;
  46. text-shadow: 3px 3px 3px #000000;
  47. }
  48. h2 { background-color: #141414;
  49. color:#c94b4b;
  50. text-align: center;
  51. text-shadow: 3px 3px 3px #000000;
  52. }
  53. footer { text-align: center;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div id="container">
  59. <header>
  60. <h1>John Timmermann</h1>
  61. <img src="john.jpg" alt="John and his Brothers">
  62. <br>
  63. <figcaption>I am the one on the Left<figcaption>
  64. </header>
  65. <h2>About Me</h2>
  66. <p>Hello, my name is John Timmermann. I am 20 years old and was born in Saint Charles, Missouri. I am a very competitive and busy person that loves to learn
  67. new things. Here is a list of the things that keep me busy in my life.</p>
  68. <ul>
  69. <li>Works at Chick-fil-A</li>
  70. <li>Goes to college at Saint Charles Community College</li>
  71. <li>Loves video production</li>
  72. <li>Plays videos games</li>
  73. </ul>
  74. <footer>
  75. <small><i>Copyright &copy; 2020 John Timmermann</i></small>
  76. </footer>
  77. </div>
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement