Advertisement
makispaiktis

Codecademy - 6th Exercise - Visual Rules (HTML)

Sep 3rd, 2019 (edited)
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.   <title></title>
  6.   <link href="style.css" type="text/css" rel="stylesheet">
  7. </head>
  8.  
  9. <body>
  10.   <div class="header">
  11.     <img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/travel.jpeg" />
  12.     <h1>Olivia Woodruff</h1>
  13.     <p class="about-me">I am a developer specializing in HTML and CSS. I like to run, bike, and make coffee using an Aeropress.</p>
  14.   </div>
  15.  
  16.   <h2>Projects</h2>
  17.   <p class="title">Web Development projects</p>
  18.   <ul>
  19.     <li>Coffee Bruër</li>
  20.     <li>Taco Finder</li>
  21.     <li>CSS Selector Finder</li>
  22.     <li>HTML Formatter</li>
  23.   </ul>
  24.  
  25.   <p class="title">Design projects</p>
  26.   <ul>
  27.     <li>Yum Yum Fudge Inc.</li>
  28.     <li>University of Marimont Dance Marathon</li>
  29.   </ul>
  30.   <h2>Contact</h2>
  31.   <p>Find me on Twitter, Dribbble, and GitHub.</p>
  32.  
  33.   <h6>&copy; Copyright. All Rights Reserved.</h6>
  34. </body>
  35.  
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement