Sichanov

Untitled

Jan 17th, 2023
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <link rel="stylesheet" href="page-content.css" />
  8. <title>Document</title>
  9. </head>
  10. <body>
  11. <section>
  12. <article>
  13. <header>
  14. <h1>Just Another Day</h1>
  15. <p class="small-text">Written by Christina on January 11th</p>
  16. </header>
  17.  
  18. <p class="text">
  19. This is my second blog entry, and I just wanted to check in on you.
  20. </p>
  21. </article>
  22. <article>
  23. <header>
  24. <h1>My First Blog Entry</h1>
  25. <p class="small-text">Written by Christina on January 10th</p>
  26. </header>
  27. <p class="text">I’m so happy to write my first blog entry – yay!</p>
  28. </article>
  29. </section>
  30. </body>
  31. </html>
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38. body {
  39. margin: 0px;
  40. padding: 0px;
  41. background-color: #CCCCCC;
  42. }
  43.  
  44. section {
  45. margin-left: 20px;
  46. }
  47.  
  48. h1 {
  49. font-size: 28px;
  50. }
  51.  
  52. .small-text {
  53. font-style: italic;
  54. }
  55.  
  56. .text {
  57. font-size: 24px;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment