Advertisement
BilakshanP

Untitled

Jul 4th, 2024
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Book Reviews!</title>
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10.  
  11. <body>
  12. <header>
  13. <h1>MediocreReads</h1>
  14. <nav>
  15. <div class="center">
  16. <a href="#">Home</a> |
  17. <a href="#">Add A New Review</a> |
  18. <a href="#">Genres</a> |
  19. <a href="reviews.html#test">Test</a> |
  20. <a href="#">About Us</a> |
  21. <a href="#bottom">Bottom</a>
  22. </div>
  23. </nav>
  24. </header>
  25.  
  26. <main>
  27. <h2>Our Catalogue</h2>
  28. <table>
  29. <tr>
  30. <td>
  31. <a href="reviews.html#book001">
  32. <figure>
  33. <img src="./images/001.jpg" alt="Shadow and Bone -- Leigh Bardugo" height="400">
  34. <figcaption>Shadow and Bone -- Leigh Bardugo</figcaption>
  35. </figure>
  36. </a>
  37. </td>
  38. <td>
  39. <a href="reviews.html#book002">
  40. <figure>
  41. <img src="./images/002.jpg" alt="The Maze Runner -- James Dashner" height="400">
  42. <figcaption>The Maze Runner -- James Dashner</figcaption>
  43. </figure>
  44. </a>
  45. </td>
  46. <td>
  47. <a href="reviews.html#book003">
  48. <figure>
  49. <img src="./images/003.jpg" alt="Daughter of Smoke &amp; Bone -- Laini Taylor" height="400">
  50. <figcaption>Daughter of Smoke &amp; Bone -- Laini Taylor</figcaption>
  51. </figure>
  52. </a>
  53. </td>
  54. <td>
  55. <a href="reviews.html#book004">
  56. <figure>
  57. <img src="./images/004.jpg" alt="Thirteen R3asons Why -- Jay Asher" height="400">
  58. <figcaption>Thirteen R3asons Why -- Jay Asher</figcaption>
  59. </figure>
  60. </a>
  61. </td>
  62. </tr>
  63. <tr>
  64. <td>
  65. <a href="reviews.html#book005">
  66. <figure>
  67. <img src="./images/005.jpg" alt="Mockingjay -- Suzanne Collins" height="400">
  68. <figcaption>Mockingjay -- Suzanne Collins</figcaption>
  69. </figure>
  70. </a>
  71. </td>
  72. <td>
  73. <a href="reviews.html#book006">
  74. <figure>
  75. <img src="./images/006.jpg" alt="Catching Fire -- Suzanne Collins" height="400">
  76. <figcaption>Catching Fire -- Suzanne Collins</figcaption>
  77. </figure>
  78. </a>
  79. </td>
  80. <td>
  81. <a href="reviews.html#book007">
  82. <figure>
  83. <img src="./images/007.jpg" alt="The Hunger Games -- Suzanne Collins" height="400">
  84. <figcaption>The Hunger Games -- Suzanne Collins</figcaption>
  85. </figure>
  86. </a>
  87. </td>
  88. <td>
  89. <a href="reviews.html#book008">
  90. <figure>
  91. <img src="./images/008.jpg" alt="The Help -- Kathryn Stockett" height="400">
  92. <figcaption>The Help -- Kathryn Stockett</figcaption>
  93. </figure>
  94. </a>
  95. </td>
  96. </tr>
  97. <tr>
  98. <td>
  99. <a href="reviews.html#book009">
  100. <figure>
  101. <img src="./images/009.jpg" alt="Life of Pi -- Yann Martel" height="400">
  102. <figcaption>Life of Pi -- Yann Martel</figcaption>
  103. </figure>
  104. </a>
  105. </td>
  106. <td>
  107. <a href="reviews.html#book010">
  108. <figure>
  109. <img src="./images/010.jpg" alt="Maame -- Jessica George" height="400">
  110. <figcaption>Maame -- Jessica George</figcaption>
  111. </figure>
  112. </a>
  113. </td>
  114. <td>
  115. <a href="reviews.html#book011">
  116. <figure>
  117. <img src="./images/011.jpg" alt="Throne of Glass -- Sarah J." height="400">
  118. <figcaption>Throne of Glass -- Sarah J.</figcaption>
  119. </figure>
  120. </a>
  121. </td>
  122. <td>
  123. <a href="reviews.html#book012">
  124. <figure>
  125. <img src="./images/012.jpg" alt="Clockwork Angel -- Cassandra Clare" height="400">
  126. <figcaption>Clockwork Angel -- Cassandra Clare</figcaption>
  127. </figure>
  128. </a>
  129. </td>
  130. </tr>
  131. </table>
  132. </main>
  133.  
  134. <footer id="bottom">
  135. <div id="contact" class="content-section">
  136. <h2>Contact</h2>
  137. <p>
  138. Feel free to reach out via email at
  139. <a href="mailto:pbilakshan@gmail.com">pbilakshan@gmail.com</a>
  140. or connect on <a href="https://www.linkedin.com/in/bilakshan/">LinkedIn</a>.
  141. </p>
  142. </div>
  143. <p>&copy; 2024 Bilakshan Purohit. All rights reserved.</p>
  144. </footer>
  145. </body>
  146.  
  147. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement