Advertisement
horozov86

publication_details.html

May 22nd, 2025
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <title>Pet Post</title>
  6.   <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body>
  9.  
  10. <div class="post-container">
  11.   <div class="post-header">
  12.     <div class="avatar"></div>
  13.     <div class="post-user-info">
  14.       <strong>Diyan Kalaydzhiev</strong>
  15.       <span>Bansko, Bulgaria</span>
  16.     </div>
  17.   </div>
  18.  
  19.   <div class="post-image">
  20.     <img src="axolotl.jpg" alt="Axolotl on rock">
  21.   </div>
  22.  
  23.   <div class="post-content">
  24.     <div class="likes">203 likes</div>
  25.     <div class="caption">
  26.       <strong>Sasho</strong><br>
  27.       Some other fish<br>
  28.       This is my pet
  29.     </div>
  30.   </div>
  31.  
  32.   <div class="comment">
  33.     <strong>Steven Ivanov</strong> - OMG where can i get one<br>
  34.     <small>Sept. 20, 2022, 5:02 p.m.</small>
  35.   </div>
  36.  
  37.   <div class="comment-input">
  38.     <input type="text" placeholder="Add comment...">
  39.     <button>Post</button>
  40.   </div>
  41. </div>
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement