Advertisement
Guest User

HTML & CSS

a guest
Sep 18th, 2019
464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. HTML:
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <title>Document</title>
  6. <link rel="stylesheet" href="test.css" type="text/css">
  7. </head>
  8. <body>
  9. <div class="container">
  10. <section class="image"><img src="plane.png" alt="plane"></section>
  11. <section class="text">
  12. <h2>About</h2>
  13. <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Libero dolorem est illum nulla molestias esse suscipit accusantium expedita, omnis harum facere dolor aperiam corrupti. Nulla nostrum laborum mollitia blanditiis voluptatum.</p>
  14. </section>
  15. </div>
  16. </body>
  17. </html>
  18.  
  19. CSS - test.css
  20.  
  21. body{
  22. background-color: black;
  23. }
  24. .container{
  25. display: flex;
  26. color: white;
  27. }
  28.  
  29. .text{
  30. margin-top: 50px;
  31. }
  32.  
  33. //@derviswebdev
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement