Il tag HTML <article>



Descrizione

Il tag HTML <article> viene usato per indicare un post in un blog, in un forum, articoli di giornali ecc.

Esempio

<!DOCTYPE html>
<html>
<head>
<title>HTML Article Tag</title>
</head>
<body>
<article>
<h2>PHP</h2> 
<p>PHP is PHP Hypertext Preprocessor</p>
</article>
</body>
</html>

Produrrà il seguente risultato:

PHP

PHP is PHP Hypertext Preprocessor.

Attributi Globali

Questo tag supporta tutti gli attributi globali descritti in - HTML - Referenze Attributi

Attributi Evento

Questo tag supporta tutti gli attributi evento descritti in - HTML - Referenze Eventi

Compatibilità Browser

ChromeFirefoxIEOperaSafariAndroid
SiSiSiSiSiSi
html_tags_reference.htm
Advertisements