Facebook
From Putrid Matamata, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 84
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <style>
  5.             *{
  6.                 margin: 0%;
  7.                 padding:0%;
  8.             }
  9.             body{
  10.                 background: #e9e3e3;
  11.                 font-family: arial;
  12.             }
  13.             div{
  14.                 width: 300px;
  15.                 background: #ffffff;
  16.                 padding: 30px;
  17.                 text-align: center;
  18.                 border: 1px solid #cecccc ;
  19.                 margin: 50px;
  20.             }
  21.            #dollarsign{
  22.               padding-left: 35px;
  23.               padding-left: 35px;
  24.               color: orange;
  25.               text-align: center;
  26.               background: #f7f7f7;
  27.               font-size: 40px;
  28.               padding:20px;
  29.            }
  30.            .blocktitle{
  31.               margin-top: 30px;
  32.               color: #333;
  33.               font-family: arial black;
  34.               margin-bottom: 10px;
  35.            }
  36.            div p{
  37.                color: #888;
  38.            }
  39.         </style>
  40.     </head>
  41.     <body>
  42.         <div>
  43.         <h2 id="dollarsign">$</h2>
  44.         <h2 class="blocktitle">Covered by Insurance</h2>
  45.         <p>Lorem Ipsum is simply dummy text of the typesetting industry.Lorem Ipsum has been the industry's standard dummy text</p>
  46.     </div>
  47.     </body>
  48. </html>