Advertisement
Guest User

no image comes up

a guest
Jul 19th, 2019
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. HTML
  2. <!DOCTYPE html>
  3. <html>
  4.  
  5. <head>
  6. <link href="https://fonts.googleapis.com/css?family=Akronim" rel="stylesheet">
  7. <meta charset="utf-8">
  8. <meta name="viewport" content="width=device-width">
  9. <title>Jake Elliott</title>
  10. <link href="style.css" rel="stylesheet" type="text/css" />
  11. </head>
  12.  
  13. <header>
  14. <nav>
  15.  
  16. </nav>
  17. <div class="background-image">
  18. <div class="img-container">
  19. <img src="./images/computer.jpg">
  20. <h1 id="Title">Jake Elliott</h1>
  21. </div>
  22. </div>
  23.  
  24. </header>
  25.  
  26. <body>
  27. <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TimelineMax.min.js" integrity="sha256-fIkQKQryItPqpaWZbtwG25Jp2p5ujqo/NwJrfqAB+Qk=" crossorigin="anonymous"></script>
  28. <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js" integrity="sha256-lPE3wjN2a7ABWHbGz7+MKBJaykyzqCbU96BJWjio86U=" crossorigin="anonymous"></script>
  29. <script src="app.js"></script>
  30. <section id="Games">
  31. <h2>Games</h2>
  32. <h4 id="Survival">Survival of the fittest</h4>
  33. <img id="Survival-img" src="./images/code.jpg">
  34. <p>Survival Of the Fittest is currently in development.</p>
  35. </section>
  36. <section id="Software">
  37. <h2>Software</h2>
  38. <p>The software that i am currently devloping.</p>
  39. </section>
  40.  
  41. </body>
  42.  
  43. </html>
  44.  
  45.  
  46. CSS
  47.  
  48. * {
  49. padding: 0;
  50. margin: 0;
  51. }
  52.  
  53. img {
  54. height: 75vh;
  55. width: 100%;
  56. object-fit: cover;
  57. }
  58.  
  59. nav {
  60. min-height: 10vh;
  61. width: 100%;
  62. background-image: linear-gradient(to top, #130047, #00A61D);
  63. }
  64.  
  65. #Title {
  66. position: absolute;
  67. left: 50%;
  68. top: 50%;
  69. color: white;
  70. }
  71.  
  72. h1 {
  73. align-content: center;
  74. align-items: center;
  75. background-image: none;
  76. }
  77.  
  78. #Games {
  79. display: grid;
  80. grid-template-columns: 1fr, 40px, 40px, 40px, 1fr;
  81. grid-template-rows: 1fr, 40px, 40xp, 40px, 1fr;
  82. }
  83.  
  84. body {
  85. background-image: linear-gradient(to top, #130047, #00A61D);
  86. }
  87.  
  88. #Survival-img {
  89. grid-column: 1/2;
  90. grid-row-start: 1;
  91. grid-row-end: 2;
  92. width: 100%;
  93. height: 100%;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement