Тег <article></article>



Этот тег определяет артикль. Артикль является индивидуальным логическим блоком информации. Но, этот блок должен быть частью общего раздела.




index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <h1>The Evolution of Windows Graphics</h1>
  •  <article>
  •   User32. This provides the familiar Windows look
  •   and feel for elements such as
  •   windows, buttons, text boxes, and so on.
  •  </article>
  •  <br />
  •  <article>
  •   GDI/GDI+. This provides drawing support for rendering
  •   shapes, text, and images at the cost of additional
  •   complexity (and often lackluster performance).
  •  </article>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <h1>The Evolution of Windows Graphics</h1>
  •  <article>
  •   User32. This provides the familiar Windows look
  •   and feel for elements such as
  •   windows, buttons, text boxes, and so on.
  •  </article>
  •  <br />
  •  <article>
  •   GDI/GDI+. This provides drawing support for rendering
  •   shapes, text, and images at the cost of additional
  •   complexity (and often lackluster performance).
  •  </article>
  • </body>
  • </html>