code:
<body>
<audio src="Audio1.mp3" controls="controls"></audio>
</body>
<audio src="Audio1.mp3" controls="controls" autoplay="autoplay"></audio>
The autoplay attribute is handy for playing a background sound as users read the content of your web
page.
By default, an audio file isn’t replayed when it completes. To play the same file over and over again,
you can set the loop attribute:
<audio src="Audio1.mp3" controls="controls" loop="loop"></audio>
Video Script Tutorial
------------------------
<video src="Video1.mp4" controls="controls" muted="mute d"></video>
The poster attribute points to an image file that is displayed while the video is being downloaded or
until the user clicks the Play button.
<video src="Video1.mp4" controls="controls" poster="poster.jpg" preload="none"></video>
----------------------------------------------
HTML5
. Date and Time Input Types
<input id="dt1" type="date" />
<input id="dt2" type="time" />
<input id="dt3" type="datetime" />
<input id="dt4" type="datetime-local" />
<input id="dt5" type="week" />
<input id="dt6" type="month" />
No comments:
Post a Comment