Advertisement
Guest User

HTML part of Simple Card with Flip

a guest
Sep 3rd, 2023
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Simple Card Flip with Pure CSS</title>
  6.     <link rel="preconnect" href="https://fonts.googleapis.com">
  7.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  8.     <link href="https://fonts.googleapis.com/css2?family=Handjet:wght@300;700&display=swap" rel="stylesheet">
  9.     <link rel="stylesheet" href="style.css">
  10. </head>
  11. <body>
  12.     <div class="card">
  13.         <div class="content">
  14.             <div class="front-side">
  15.                 <img class="photo" src="https://via.placeholder.com/150" alt="here's my photo">
  16.                 <span class="title">Daniel Lopez</span> <span class="title-small">bio of</span>
  17.             </div>
  18.             <div class="back-side">
  19.                 Daniel Lopez is a 14-year-old teenager who enjoys watching sport, watching television and helping old ladies across the road. He is friendly and caring, but can also be very rude and a bit moody.
  20.  
  21. He is an American Christian. He is currently at school. He is allergic to soy. He has phobias of apostrophes and crocodiles
  22.  
  23. Physically, Daniel is in good shape. He is very short for his age with olive skin, grey hair and green eyes.
  24.  
  25. He lives in a working class neighbourhood. His parents abandoned him and he is living in foster care.
  26.  
  27. Daniel goes to Shelbyville School, where his favourite subjects are chemistry and biology. He loves his teacher Mr Anderson but hates Mr Gill whose interests include putting children in detention for no reason.
  28. Daniel's best friend is a teenager called Rose Washington. They are inseparable. He also hangs around with Marjorie Wright and Toby Khan. They enjoy attending museums together.
  29.             </div>
  30.         </div>
  31.     </div>
  32. </body>
  33. </html>
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement