<!DOCTYPE html>
<html>
<head>
<title>nombre de la pagina</title>
...
</head>
<body>
<header>...</header>
...
<footer>...</footer>
</body>
</html>
<header>
<h1>Esto es parte de un header</h1>
<p>Aquí podemos agregar cualquier cosa</p>
</header>
<footer>
<p>Esta pagina fue hecha por ...</p>
</footer>
para el atributo type
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
<source src="audio.ogg" type="audio/ogg">
Tu navegador no soporta la etiqueta audio
</audio>
<video width="320" height="240" controls>
<source src="video.mp4" type="video/mp4">
<source src="video.ogg" type="video/ogg">
Tu navegador no soporta la etiqueta video
</video>
<a>Enlaces</a>