Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Cat</title>
  6.     <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
  7.     <style type="text/css">
  8.       .red-text {color: red;}
  9.       h2 { font-family:'Lobster', Monospace;}
  10.       p {font-size: 16px;font-family: Monospace;}
  11.  
  12.       .thick-green-border {
  13.         border-color: green;
  14.         border-width: 10px;
  15.         border-style: solid;
  16.       }
  17.       .smaller-image {
  18.         width: 100px;
  19.         border-radius: 10px;
  20.       }
  21.     </style>
  22.   </head>
  23.   <body>
  24.     <h2 class="red-text">CatPhotoApp</h2>
  25.  
  26.     <img class="smaller-image thick-green-border" src="https://s3.amazonaws.com/freecodecamp/relaxing-cat.jpg" alt="A cute orange cat lying on its back."/>
  27.  
  28.     <p class="red-text">Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  29.     <p class="red-text">Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
  30.   </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement