Advertisement
desislava_topuzakova

Untitled

Jun 28th, 2022
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Semantic Blog Layout</title>
  6. <link rel="stylesheet" href="styles.css">
  7. </head>
  8. <body>
  9. <header>
  10. <h1>Developer News</h1>
  11. <nav>
  12. <ul>
  13. <li><a href="#html">HTML</a></li>
  14. <li><a href="#js">JavaScript</a></li>
  15. </ul>
  16. </nav>
  17. </header>
  18. <main>
  19. <section id="html">
  20. <h2>HTML</h2>
  21. <article>
  22. <h4>New feature: JPEG XL image format</h4>
  23. <p>
  24. JPEG XL image format is a modern image format optimized for web environments. JPEG XL generally has better compression than WebP, JPEG, PNG and GIF and is designed to supersede them.
  25. </p>
  26. <p>
  27. Learn more at: <a href="https://en.wikipedia.org/wiki/JPEG_XL">https://en.wikipedia.org/wiki/JPEG_XL</a>
  28. </p>
  29. <p>
  30. By The HTTP Working Group. Published <time datetime="2021-1-23">January 23rd</time>
  31. </p>
  32. </article>
  33. <article>
  34. <h4>New feature: Cookie Store API</h4>
  35. <p>
  36. Cookie Store API is a JS API for reading and modifying cookies. Compared to the existing `document.cookie` method, the API provides a much more modern interface, which can also be used in service workers.
  37. </p>
  38. <p>
  39. Learn more at: <a href="https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/cookies/CookieStore">https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/cookies/CookieStore</a>
  40. </p>
  41. By Joshua Bell. Published <time datetime="2020-12-15">December 15th</time>
  42. </article>
  43. </section>
  44. <section id="js">
  45. <h2>JavaScript</h2>
  46. <article>
  47. <h4>Billboard.js 3.0: The D3.js-Powered Chart Library</h4>
  48. <p>
  49. Billboard.js is a popular library supporting a whole range of chart types out of the box (bar, line, areas, donuts, radars, and various hybrids) – 3.0 brings candlestick / OHLC chart support (often used in financial contexts) and supports D3.js v6.
  50. </p>
  51. <p>
  52. Learn more at: <a href="https://github.com/naver/billboard.js">https://github.com/naver/billboard.js</a>
  53. </p>
  54. <p>
  55. By Jae Sung Park. Published <time datetime="2021-03-24">March 24th</time>
  56. </p>
  57. </article>
  58. <article>
  59. <h4>Nine JavaScript and TypeScript ORMs</h4>
  60. <p>
  61. A roundup, complete with code examples, showing off a variety of tools like Knex.js, Mongoose, TypeORM, Waterline, and Bookshelf.
  62. </p>
  63. <p>
  64. Learn more at: <a href="https://www.sitepoint.com/javascript-typescript-orms/">https://www.sitepoint.com/javascript-typescript-orms/</a>
  65. </p>
  66. <p>
  67. By Michael Wanyoike. Published <time datetime="2021-03-31">March 31rd</time>
  68. </p>
  69. </article>
  70. </section>
  71. </main>
  72. <footer>
  73. <p>
  74. &copy; 2021 DeveloperNewsPortal.info
  75. </p>
  76. <p>
  77. Please contact <a href="">Troy McClure</a> for questions about these articles.
  78. </p>
  79. </footer>
  80. </body>
  81. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement