I'm a little confused about how new tags should appear.
Is it correct:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title></title> </head> <body> <section> <header> <nav></nav> </header> <section> </section> <footer> </footer> <section> </body> </html>
Or should one of the sections be <article>? What should be the original layout?
<article>
You should not have an "initial layout for anything inside <body>.
<body>
<article> <section> , , , , . , , , <article>.
<section>
<section> . , .
(, , , . IE HTML Shiv, , . isn ' , XML- HTML doctype , .)
HTML
IMHO, , , , (, ?)
, . ( , ,
, , , . , . <div> , .
<div>
Dive HTML 5, . HTML4 HTML5 ified .
.
, :
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <link href="/css/screen.css" rel="stylesheet" /> </head> <body> </body> </html>
doctype HTML5 , , , "" HTML5. HTML5, HTML5 (, type link).
type
link
, section article.
html5.
Source: https://habr.com/ru/post/1747193/More articles:Повторная запись URL-адреса ASP.NET; Это возможно? - asp.netHow to disable video acceleration programmatically - vb.netHow can I load a WPF window (xaml) inside other WPF windows in a panel? - wpfRails: Unidirectional Input Subdirectories and Models - ruby-on-railsMoving online store storage to NoSQL solution - sql-serverFinding methods in a C # file programmatically - reflectionHow to use multiple cores in large SQL Server queries? - sql-server-2005Window properties - how are they implemented? - windowsGuidelines for open source search? - open-sourceJava Swing: how to update a JTable model from another page - javaAll Articles