Etiquetal Nuevas en HTML
Elementos semánticos
<article>
<aside>
<details>
<figcaption>
<figure>
<footer>
<header>
<main>
<mark>
<nav>
<section>
<summary>
<time>
Formularios – Input types
text
email
password
checkbox
radio
submit
range
search
date
time
week
color
datalist
Entidades
Las entidades HTML son caracteres que se utilizan para reemplazar caracteres reservados en HTML o para caracteres que no aparecen en el teclado. Algunos caracteres están reservados en HTML. Si utiliza los signos menos que (<) o más que (>) en su texto, el navegador podría confundirlos con etiquetas.
<!-- format &[entity_name]; -->
<!-- example for a less-than sign (<) -->
<
<!-- format &#[entity_number]; -->
<!-- example for a less-than sign (<) -->
<
| Caracter | Entity Name | Entity Number | Descripción |
|   | Space | ||
| ! | ! | Exclamation mark | |
| ” | " | Quotation mark | |
| # | # | Number sign | |
| $ | $ | Dollar sign | |
| ¢ | ¢ | ¢ | Cent sign |
| € | € | € | Euro sign |
| £ | £ | £ | GBP sign |
| ¥ | ¥ | ¥ | Yen sign |
| % | % | Percent sign | |
| & | & | & | Ampersand |
| ’ | ' | Apostrophe | |
| ( | ( | Opening/Left Parenthesis | |
| ) | ) | Closing/Right Parenthesis | |
| * | * | Asterisk | |
| + | + | Plus sign | |
| coma | , | Comma | |
| – | - | Hyphen | |
| . | . | Period | |
| / | / | Slash | |
| © | © | © | Copyright |
| ® | ® | ® | Registered Trademark |
| ” | " | " | double quotation mark |
| > | > | > | Greater-than sign |
| < | < | < | Less-than sign |
| • | • | • | Bullet point |
Audio
<audio controls loop autoplay>
<source src="tutorial.ogg" type="audio/ogg" />
<source src="tutorial.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
Video
<video controls autoplay poster="poster.png">
<source src="tutorial.ogg" type="video /ogg" />
<source src="tutorial.mp4" type="video /mpeg" />
Your browser does not support the video element. Kindly,update it to latest version.
</video>
