Advertisement
Atanasov_88

Untitled

Feb 21st, 2017
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Zora Properties</title>
  6.     <link rel="stylesheet" href="zora-properties.css">
  7. </head>
  8. <body>
  9.  
  10. <aside>
  11.     <h1>
  12.         <strong>Zora</strong>
  13.         <img src="images/profile-picture.jpg">
  14.         <p>John Doe</p>
  15.     </h1>
  16.  
  17.     <nav>
  18.         <ul>
  19.             <li>
  20.                 <i class="fa fa-cogs" aria-hidden="true"></i>
  21.                 properties
  22.             </li>
  23.             <li>
  24.                 <i class="fa fa-user-circle-o" aria-hidden="true"></i>
  25.                 applicants
  26.             </li>
  27.             <li>
  28.                 <i class="fa fa-users" aria-hidden="true"></i>
  29.                 tennants
  30.             </li>
  31.             <li>
  32.                 <i class="fa fa-comments-o" aria-hidden="true"></i>
  33.                 messages
  34.             </li>
  35.         </ul>
  36.     </nav>
  37. </aside>
  38.  
  39. <main>
  40.     <header>
  41.         <h1 class="last-letter">Properties </h1>
  42.  
  43.         <button class="property">add property &#9661;</button>
  44.  
  45.         <h2>Spring Garden road complex</h2>
  46.  
  47.         <h3>1158 spring garden road, los angeles us</h3>
  48.     </header>
  49.  
  50.  
  51.     <section>
  52.  
  53.         <article class="first-image">
  54.             <img src="images/apartment-1.jpg" alt="Apartment 1">
  55.             <h2>super sweet apartment</h2>
  56.             <p>unit 305</p>
  57.         </article>
  58.  
  59.         <article class="second-image">
  60.             <img src="images/apartment-2.jpg" alt="Apartment 1">
  61.             <h2>super sweet apartment</h2>
  62.             <p>unit 302</p>
  63.         </article>
  64.  
  65.         <article class="third-image">
  66.             <img src="images/apartment-3.jpg" alt="Apartment 1">
  67.             <h2>super sweet apartment</h2>
  68.             <p>unit 302</p>
  69.         </article>
  70.  
  71.  
  72.     </section>
  73.  
  74.  
  75. </main>
  76.  
  77.  
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement