lunes, 10 de marzo de 2014

AUDIO
<audio src="double fiesta.mp3" type="audio/mpeg">
Format
MIME-type
MP3
audio/mpeg
Ogg
audio/ogg
Wav
audio/wav

Para que el audio corra necesita CONTROLS

<audio controls src="double fiesta.mp3" type="audio/mpeg">
Attribute
Value
Description
autoplay
Specifies that the audio will start playing as soon as it is ready
controls
Specifies that audio controls should be displayed (such as a play/pause button etc).
loopNew
loop
Specifies that the audio will start over again, every time it is finished
mutedNew
muted
Specifies that the audio output should be muted
auto
metadata
none
Specifies if and how the author thinks the audio should be loaded when the page loads
srcNew
URL
Specifies the URL of the audio file

Autoplay,loop,muted, preload necesitad de CONTROLS antes de ellos.


Frame:  Es una manera de dividir tu pagina web en varias secciónes , cada una en un marco.

1.  Necesitas poner una <frameset>

<html>
<frameset>
</frameset>
</html>

2. Para comenzar a tener frames necesitas poner divisiones en tus framsets de columna (COLS) y de filas (ROWS)
                               <frameset cols = “ 10% , 15%,*”>
                               <frameset rows = “ 10% , 15%,*”>

Se llena con porcentaje o con pixeles. El asterisco es para completar lo que falta. E n ambos casos se dividió en tres partes.
Cada uno afecta al frame que esta inmediatamente debajo de ellos.




<TARGET >  sirve para direccionar tu link
<a target="_blank|_self|_parent|_top|framename">

Attribute Values
Value
Description
_blank
Opens the linked document in a new window or tab
_self
Opens the linked document in the same frame as it was clicked (this is default)
_parent
Opens the linked document in the parent frame
_top
Opens the linked document in the full body of the window
framename
Opens the linked document in a named frame


Para poner el nombre al frame, solamente es asi:
 <frame name=” elnombre”>


 



No hay comentarios:

Publicar un comentario